home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Bin / dclstd50.bpl / 0 / RCDATA / TMASKTEXTFORM / TMASKTEXTFORM.txt
Text File  |  1999-08-11  |  1KB  |  79 lines

  1. object MaskTextForm: TMaskTextForm
  2.   Left = 225
  3.   Top = 200
  4.   ActiveControl = TestEdit
  5.   BorderStyle = bsDialog
  6.   Caption = 'Masked Text Editor'
  7.   ClientHeight = 92
  8.   ClientWidth = 286
  9.   ParentFont = True
  10.   PixelsPerInch = 96
  11.   Position = poScreenCenter
  12.   OnCreate = FormCreate
  13.   TextHeight = 13
  14.   object Label3: TLabel
  15.     Left = 8
  16.     Top = 10
  17.     Width = 51
  18.     Height = 13
  19.     Caption = '&Input Text:'
  20.     FocusControl = TestEdit
  21.     IsControl = True
  22.   end
  23.   object Label1: TLabel
  24.     Left = 8
  25.     Top = 36
  26.     Width = 50
  27.     Height = 13
  28.     Caption = 'Edit Mask:'
  29.     IsControl = True
  30.   end
  31.   object EditMask: TLabel
  32.     Left = 76
  33.     Top = 36
  34.     Width = 200
  35.     Height = 13
  36.     AutoSize = False
  37.     Caption = 'None'
  38.     IsControl = True
  39.   end
  40.   object TestEdit: TMaskEdit
  41.     Left = 76
  42.     Top = 8
  43.     Width = 200
  44.     Height = 21
  45.     MaxLength = 0
  46.     TabOrder = 0
  47.     IsControl = True
  48.   end
  49.   object OKButton: TButton
  50.     Left = 40
  51.     Top = 62
  52.     Width = 75
  53.     Height = 25
  54.     Caption = 'OK'
  55.     Default = True
  56.     ModalResult = 1
  57.     TabOrder = 1
  58.   end
  59.   object CancelButton: TButton
  60.     Left = 119
  61.     Top = 62
  62.     Width = 75
  63.     Height = 25
  64.     Cancel = True
  65.     Caption = 'Cancel'
  66.     ModalResult = 2
  67.     TabOrder = 2
  68.   end
  69.   object HelpButton: TButton
  70.     Left = 200
  71.     Top = 62
  72.     Width = 75
  73.     Height = 25
  74.     Caption = '&Help'
  75.     TabOrder = 3
  76.     OnClick = HelpButtonClick
  77.   end
  78. end
  79.