home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / ctenari / Kucera / setup.ex_ / setup.ex / 0 / RCDATA / TPWFORM / TPWFORM.txt
Text File  |  2002-02-06  |  2KB  |  80 lines

  1. object PwForm: TPwForm
  2.   Left = 201
  3.   Top = 138
  4.   BorderStyle = bsNone
  5.   Caption = 'Enter Password'
  6.   ClientHeight = 140
  7.   ClientWidth = 276
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 276
  21.     Height = 140
  22.     Align = alClient
  23.     TabOrder = 0
  24.     object PWLabel1: TLabel
  25.       Left = 9
  26.       Top = 5
  27.       Width = 257
  28.       Height = 41
  29.       AutoSize = False
  30.       Caption = 
  31.         'This installation is password-protected. Please enter the correc' +
  32.         't password to continue with the installation.'
  33.       WordWrap = True
  34.     end
  35.     object PWLabel2: TLabel
  36.       Left = 10
  37.       Top = 53
  38.       Width = 59
  39.       Height = 13
  40.       Caption = 'Password:'
  41.       Font.Charset = DEFAULT_CHARSET
  42.       Font.Color = clWindowText
  43.       Font.Height = -11
  44.       Font.Name = 'MS Sans Serif'
  45.       Font.Style = [fsBold]
  46.       ParentFont = False
  47.     end
  48.     object Password: TEdit
  49.       Left = 79
  50.       Top = 50
  51.       Width = 186
  52.       Height = 21
  53.       PasswordChar = '*'
  54.       TabOrder = 0
  55.     end
  56.     object OK: TButton
  57.       Left = 55
  58.       Top = 96
  59.       Width = 75
  60.       Height = 25
  61.       Caption = 'OK'
  62.       Default = True
  63.       ModalResult = 1
  64.       TabOrder = 1
  65.       OnClick = OKClick
  66.     end
  67.     object Cancel: TButton
  68.       Left = 145
  69.       Top = 96
  70.       Width = 75
  71.       Height = 25
  72.       Cancel = True
  73.       Caption = '&Cancel'
  74.       ModalResult = 2
  75.       TabOrder = 2
  76.       OnClick = CancelClick
  77.     end
  78.   end
  79. end
  80.