home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1999 February / Freesoft_1999-02_cd.bin / Recenz / Internet / NetTimePro / Mpw32.dl_ / Mpw32.dl / RCDATA / TPREPAYFORM / TPREPAYFORM.txt
Text File  |  1997-05-14  |  3KB  |  161 lines

  1. object PrePayForm: TPrePayForm
  2.   Left = 243
  3.   Top = 111
  4.   HelpContext = 430
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'PrePayForm'
  8.   ClientHeight = 123
  9.   ClientWidth = 385
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OnCreate = FormCreate
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Frame: TGroupBox
  19.     Left = 8
  20.     Top = 12
  21.     Width = 369
  22.     Height = 75
  23.     Caption = 'PRE-PAID REGISTRATION'
  24.     Font.Color = clMaroon
  25.     Font.Height = -13
  26.     Font.Name = 'MS Sans Serif'
  27.     Font.Style = [fsBold]
  28.     ParentFont = False
  29.     TabOrder = 0
  30.     object LabelPassword: TLabel
  31.       Left = 9
  32.       Top = 26
  33.       Width = 60
  34.       Height = 13
  35.       AutoSize = False
  36.       Caption = '&Password:'
  37.       FocusControl = Password
  38.       Font.Color = clBlack
  39.       Font.Height = -11
  40.       Font.Name = 'MS Sans Serif'
  41.       Font.Style = []
  42.       ParentFont = False
  43.     end
  44.     object LabelAuthCode: TLabel
  45.       Left = 9
  46.       Top = 51
  47.       Width = 72
  48.       Height = 13
  49.       AutoSize = False
  50.       Caption = 'Pre-Pay Code:'
  51.       Font.Color = clBlack
  52.       Font.Height = -11
  53.       Font.Name = 'MS Sans Serif'
  54.       Font.Style = []
  55.       ParentFont = False
  56.     end
  57.     object PrePayCode: TMPWAuthCodeEdit
  58.       Left = 84
  59.       Top = 46
  60.       Width = 277
  61.       Height = 21
  62.       Font.Color = clBlack
  63.       Font.Height = -11
  64.       Font.Name = 'MS Sans Serif'
  65.       Font.Style = []
  66.       ParentFont = False
  67.       PopupMenu = EditMenu
  68.       TabOrder = 1
  69.       OnChange = PrePayCodeChange
  70.       CharType = ctHexChars
  71.     end
  72.     object Password: TMPWEdit
  73.       Left = 84
  74.       Top = 24
  75.       Width = 277
  76.       Height = 21
  77.       Font.Color = clBlack
  78.       Font.Height = -11
  79.       Font.Name = 'MS Sans Serif'
  80.       Font.Style = []
  81.       ParentFont = False
  82.       MaxLength = 32
  83.       TabOrder = 0
  84.       PopupMenu = EditMenu
  85.       OnChange = PasswordChange
  86.       CharCase = ecUpperCase
  87.     end
  88.   end
  89.   object FinishButton: TButton
  90.     Left = 321
  91.     Top = 94
  92.     Width = 56
  93.     Height = 25
  94.     Caption = '&Finish'
  95.     Enabled = False
  96.     TabOrder = 1
  97.     OnClick = FinishButtonClick
  98.   end
  99.   object CancelButton: TButton
  100.     Left = 262
  101.     Top = 94
  102.     Width = 56
  103.     Height = 25
  104.     Caption = '&Cancel'
  105.     ModalResult = 2
  106.     TabOrder = 3
  107.   end
  108.   object HelpButton: TButton
  109.     Left = 203
  110.     Top = 94
  111.     Width = 56
  112.     Height = 25
  113.     Caption = '&Help'
  114.     TabOrder = 2
  115.     OnClick = HelpButtonClick
  116.   end
  117.   object EditMenu: TPopupMenu
  118.     OnPopup = EditMenuPopup
  119.     Left = 8
  120.     Top = 92
  121.     object EditUndo: TMenuItem
  122.       Caption = '&Undo'
  123.       ShortCut = 0
  124.       OnClick = EditUndoClick
  125.     end
  126.     object EditBar1: TMenuItem
  127.       Caption = '-'
  128.       ShortCut = 0
  129.     end
  130.     object EditCut: TMenuItem
  131.       Caption = 'Cu&t'
  132.       ShortCut = 0
  133.       OnClick = EditCutClick
  134.     end
  135.     object EditCopy: TMenuItem
  136.       Caption = '&Copy'
  137.       ShortCut = 0
  138.       OnClick = EditCopyClick
  139.     end
  140.     object EditPaste: TMenuItem
  141.       Caption = '&Paste'
  142.       ShortCut = 0
  143.       OnClick = EditPasteClick
  144.     end
  145.     object EditDelete: TMenuItem
  146.       Caption = '&Delete'
  147.       ShortCut = 0
  148.       OnClick = EditDeleteClick
  149.     end
  150.     object EditBar2: TMenuItem
  151.       Caption = '-'
  152.       ShortCut = 0
  153.     end
  154.     object EditSelectAll: TMenuItem
  155.       Caption = 'Select &All'
  156.       ShortCut = 0
  157.       OnClick = EditSelectAllClick
  158.     end
  159.   end
  160. end
  161.