home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Bin / DCLSTD50.BPL / 0 / RCDATA / TMASKFORM / TMASKFORM.txt
Text File  |  1999-08-11  |  3KB  |  164 lines

  1. object MaskForm: TMaskForm
  2.   Left = 245
  3.   Top = 153
  4.   ActiveControl = InputMask
  5.   BorderStyle = bsDialog
  6.   Caption = 'Input Mask Editor'
  7.   ClientHeight = 211
  8.   ClientWidth = 488
  9.   ParentFont = True
  10.   Position = poScreenCenter
  11.   OnCreate = FormCreate
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Bevel1: TBevel
  15.     Left = 8
  16.     Top = 124
  17.     Width = 193
  18.     Height = 50
  19.     Shape = bsFrame
  20.   end
  21.   object Label1: TLabel
  22.     Left = 8
  23.     Top = 8
  24.     Width = 56
  25.     Height = 13
  26.     Caption = '&Input Mask:'
  27.     FocusControl = InputMask
  28.     IsControl = True
  29.   end
  30.   object Label2: TLabel
  31.     Left = 208
  32.     Top = 8
  33.     Width = 72
  34.     Height = 13
  35.     Caption = '&Sample Masks:'
  36.     FocusControl = ListBox1
  37.     IsControl = True
  38.   end
  39.   object Label3: TLabel
  40.     Left = 12
  41.     Top = 128
  42.     Width = 51
  43.     Height = 13
  44.     Caption = '&Test Input:'
  45.     FocusControl = TestEdit
  46.     IsControl = True
  47.   end
  48.   object Label4: TLabel
  49.     Left = 24
  50.     Top = 60
  51.     Width = 99
  52.     Height = 13
  53.     Caption = 'Character for &Blanks:'
  54.     FocusControl = Blanks
  55.     IsControl = True
  56.   end
  57.   object InputMask: TEdit
  58.     Left = 8
  59.     Top = 24
  60.     Width = 192
  61.     Height = 21
  62.     TabOrder = 0
  63.     Text = 'InputMask'
  64.     OnChange = InputMaskChange
  65.     IsControl = True
  66.   end
  67.   object ListBox1: TListBox
  68.     Left = 208
  69.     Top = 24
  70.     Width = 268
  71.     Height = 149
  72.     ItemHeight = 16
  73.     Items.Strings = (
  74.       'Phone | 4155551212 | !\(999\)000-0000;1;_'
  75.       'Extension | 15450 | !99999;1;_'
  76.       'Social Security | 555555555 | 000\-00\-0000;1;_'
  77.       'Short Zip Code | 90504 | 00000;1;_'
  78.       'Long Zip Code | 905040000 | 00000\-9999;1;_'
  79.       'Date | 062794 | !99/99/00;1;_'
  80.       'Long Time | 090515PM | !90:00:00>LL;1;_'
  81.       'Short Time | 1345 | !90:00;1;_')
  82.     Style = lbOwnerDrawFixed
  83.     TabOrder = 4
  84.     OnClick = ListBoxSelect
  85.     OnDrawItem = ListDrawItem
  86.     IsControl = True
  87.   end
  88.   object TestEdit: TMaskEdit
  89.     Left = 12
  90.     Top = 148
  91.     Width = 185
  92.     Height = 21
  93.     MaxLength = 0
  94.     TabOrder = 3
  95.     IsControl = True
  96.   end
  97.   object Blanks: TEdit
  98.     Left = 152
  99.     Top = 56
  100.     Width = 33
  101.     Height = 21
  102.     MaxLength = 1
  103.     TabOrder = 1
  104.     Text = '_'
  105.     OnChange = BlanksChange
  106.     IsControl = True
  107.   end
  108.   object SaveMaskCheck: TCheckBox
  109.     Left = 8
  110.     Top = 84
  111.     Width = 177
  112.     Height = 20
  113.     Caption = 'Save &Literal Characters'
  114.     TabOrder = 2
  115.     OnClick = BlanksChange
  116.     IsControl = True
  117.   end
  118.   object Masks: TButton
  119.     Left = 16
  120.     Top = 181
  121.     Width = 75
  122.     Height = 25
  123.     Caption = '&Masks...'
  124.     TabOrder = 5
  125.     OnClick = MasksClick
  126.   end
  127.   object OKButton: TButton
  128.     Left = 241
  129.     Top = 181
  130.     Width = 75
  131.     Height = 25
  132.     Caption = 'OK'
  133.     Default = True
  134.     ModalResult = 1
  135.     TabOrder = 6
  136.   end
  137.   object CancelButton: TButton
  138.     Left = 321
  139.     Top = 181
  140.     Width = 75
  141.     Height = 25
  142.     Cancel = True
  143.     Caption = 'Cancel'
  144.     ModalResult = 2
  145.     TabOrder = 7
  146.   end
  147.   object HelpButton: TButton
  148.     Left = 401
  149.     Top = 181
  150.     Width = 75
  151.     Height = 25
  152.     Caption = '&Help'
  153.     TabOrder = 8
  154.     OnClick = HelpButtonClick
  155.   end
  156.   object OpenDialog1: TOpenDialog
  157.     DefaultExt = 'dem'
  158.     Filter = 'Edit Masks (*.dem)|*.dem|All Files (*.*)|*.*'
  159.     Title = 'Open Mask File'
  160.     Left = 112
  161.     Top = 184
  162.   end
  163. end
  164.