home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / CMCD1004.ISO / Software / Shareware / Programare / sweet_trials_d7 / SCMaskEditor.dfm < prev    next >
Encoding:
Text File  |  2004-01-29  |  3.4 KB  |  164 lines

  1. object SCMaskEditorForm: TSCMaskEditorForm
  2.   Left = 277
  3.   Top = 255
  4.   ActiveControl = InputMask
  5.   BorderStyle = bsDialog
  6.   Caption = 'Input Mask Editor'
  7.   ClientHeight = 241
  8.   ClientWidth = 490
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object InputMaskLabel: TLabel
  20.     Left = 8
  21.     Top = 4
  22.     Width = 117
  23.     Height = 17
  24.     AutoSize = False
  25.     Caption = '&Input Mask:'
  26.     FocusControl = InputMask
  27.     Layout = tlBottom
  28.   end
  29.   object SampleLabel: TLabel
  30.     Left = 212
  31.     Top = 4
  32.     Width = 117
  33.     Height = 17
  34.     AutoSize = False
  35.     Caption = '&Sample Masks:'
  36.     FocusControl = SampleMasks
  37.     Layout = tlBottom
  38.   end
  39.   object BlankLabel: TLabel
  40.     Left = 8
  41.     Top = 52
  42.     Width = 149
  43.     Height = 17
  44.     Alignment = taRightJustify
  45.     AutoSize = False
  46.     Caption = 'Character for &Blanks:'
  47.     FocusControl = BlankEdit
  48.     Layout = tlBottom
  49.   end
  50.   object TestLabel: TLabel
  51.     Left = 8
  52.     Top = 156
  53.     Width = 117
  54.     Height = 17
  55.     AutoSize = False
  56.     Caption = '&Test Input:'
  57.     FocusControl = TestInput
  58.     Layout = tlBottom
  59.   end
  60.   object TestInput: TSCMaskEdit
  61.     Left = 8
  62.     Top = 176
  63.     Width = 193
  64.     Height = 21
  65.     EditMask = '000\-00\-0000;1;_'
  66.     MaxLength = 11
  67.     TabOrder = 3
  68.     Text = '___-__-____'
  69.   end
  70.   object SampleMasks: TListView
  71.     Left = 212
  72.     Top = 24
  73.     Width = 269
  74.     Height = 173
  75.     Columns = <
  76.       item
  77.         Caption = 'Description'
  78.         Width = 124
  79.       end
  80.       item
  81.         Caption = 'Sample'
  82.         Width = 120
  83.       end>
  84.     ColumnClick = False
  85.     HideSelection = False
  86.     ReadOnly = True
  87.     RowSelect = True
  88.     ShowColumnHeaders = False
  89.     TabOrder = 5
  90.     ViewStyle = vsReport
  91.     OnChange = SampleMasksChange
  92.   end
  93.   object BlankEdit: TSCEdit
  94.     Left = 164
  95.     Top = 52
  96.     Width = 37
  97.     Height = 21
  98.     Alignment = taRightJustify
  99.     MaxLength = 1
  100.     TabOrder = 1
  101.     Text = '_'
  102.     OnChange = BlankEditChange
  103.   end
  104.   object SaveLiterals: TSCCheckbox
  105.     Left = 8
  106.     Top = 88
  107.     Width = 144
  108.     Height = 17
  109.     State = sccbChecked
  110.     Caption = 'Save &Literal Characters'
  111.     Checked = True
  112.     TabOrder = 2
  113.     OnChange = SaveLiteralsChange
  114.   end
  115.   object InputMask: TSCEdit
  116.     Left = 8
  117.     Top = 24
  118.     Width = 193
  119.     Height = 21
  120.     TabOrder = 0
  121.     OnChange = InputMaskChange
  122.   end
  123.   object MasksButton: TSCButton
  124.     Left = 112
  125.     Top = 206
  126.     Width = 89
  127.     Height = 25
  128.     Caption = '&Masks...'
  129.     ShowFocus = False
  130.     TabOrder = 4
  131.     OnClick = MasksButtonClick
  132.   end
  133.   object OKButton: TSCButton
  134.     Left = 313
  135.     Top = 206
  136.     Width = 81
  137.     Height = 25
  138.     Caption = 'OK'
  139.     Default = True
  140.     ModalResult = 1
  141.     ShowFocus = False
  142.     TabOrder = 6
  143.   end
  144.   object CancelButton: TSCButton
  145.     Left = 400
  146.     Top = 206
  147.     Width = 81
  148.     Height = 25
  149.     Cancel = True
  150.     Caption = 'Cancel'
  151.     ModalResult = 2
  152.     ShowFocus = False
  153.     TabOrder = 7
  154.   end
  155.   object OpenMaskDialog: TOpenDialog
  156.     DefaultExt = 'dem'
  157.     Filter = 'Edit Masks (*.dem)|*.dem|All Files (*.*)|*.*'
  158.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  159.     Title = 'Open Mask File'
  160.     Left = 172
  161.     Top = 132
  162.   end
  163. end
  164.