home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 5.7 / 2000-04_Disc_5.7.bin / pcgamer.exe / 0 / RCDATA / TPASSWORDDIALOG / TPASSWORDDIALOG.txt
Text File  |  2000-01-24  |  2KB  |  82 lines

  1. object PasswordDialog: TPasswordDialog
  2.   Left = 260
  3.   Top = 184
  4.   ActiveControl = Edit
  5.   BorderStyle = bsDialog
  6.   Caption = 'Enter password'
  7.   ClientHeight = 132
  8.   ClientWidth = 273
  9.   ParentFont = True
  10.   PixelsPerInch = 96
  11.   Position = poScreenCenter
  12.   TextHeight = 13
  13.   object OKButton: TButton
  14.     Left = 109
  15.     Top = 98
  16.     Width = 75
  17.     Height = 25
  18.     Caption = '&OK'
  19.     Default = True
  20.     Enabled = False
  21.     ModalResult = 1
  22.     TabOrder = 1
  23.     OnClick = OKButtonClick
  24.   end
  25.   object CancelButton: TButton
  26.     Left = 190
  27.     Top = 98
  28.     Width = 75
  29.     Height = 25
  30.     Cancel = True
  31.     Caption = 'Cancel'
  32.     ModalResult = 2
  33.     TabOrder = 2
  34.   end
  35.   object GroupBox1: TGroupBox
  36.     Left = 8
  37.     Top = 8
  38.     Width = 257
  39.     Height = 81
  40.     Caption = 'Password'
  41.     TabOrder = 0
  42.     object Edit: TEdit
  43.       Left = 16
  44.       Top = 18
  45.       Width = 225
  46.       Height = 20
  47.       PasswordChar = '*'
  48.       TabOrder = 0
  49.       OnChange = EditChange
  50.     end
  51.     object AddButton: TButton
  52.       Left = 16
  53.       Top = 46
  54.       Width = 65
  55.       Height = 25
  56.       Caption = '&Add'
  57.       Enabled = False
  58.       TabOrder = 1
  59.       OnClick = AddButtonClick
  60.     end
  61.     object RemoveButton: TButton
  62.       Left = 88
  63.       Top = 46
  64.       Width = 65
  65.       Height = 25
  66.       Caption = '&Remove'
  67.       Enabled = False
  68.       TabOrder = 2
  69.       OnClick = RemoveButtonClick
  70.     end
  71.     object RemoveAllButton: TButton
  72.       Left = 160
  73.       Top = 46
  74.       Width = 81
  75.       Height = 25
  76.       Caption = 'Re&move all'
  77.       TabOrder = 3
  78.       OnClick = RemoveAllButtonClick
  79.     end
  80.   end
  81. end
  82.