home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 July / CHIP_CD_2005-07.iso / software / rapid / rapid_install.exe / rapid.exe / 0 / RCDATA / TWIZARDFORM / TWIZARDFORM.txt
Text File  |  2005-05-02  |  2KB  |  103 lines

  1. object WizardForm: TWizardForm
  2.   Left = 565
  3.   Top = 290
  4.   BorderStyle = bsDialog
  5.   Caption = 'Wizard'
  6.   ClientHeight = 288
  7.   ClientWidth = 344
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object btnOK: TButton
  20.     Left = 176
  21.     Top = 256
  22.     Width = 75
  23.     Height = 25
  24.     Caption = 'OK'
  25.     Default = True
  26.     ModalResult = 1
  27.     TabOrder = 0
  28.   end
  29.   object btnCancel: TButton
  30.     Left = 264
  31.     Top = 256
  32.     Width = 75
  33.     Height = 25
  34.     Cancel = True
  35.     Caption = 'Cancel'
  36.     ModalResult = 2
  37.     TabOrder = 1
  38.   end
  39.   object GroupBox3: TGroupBox
  40.     Left = 8
  41.     Top = 8
  42.     Width = 329
  43.     Height = 241
  44.     Caption = ' Profiles '
  45.     TabOrder = 2
  46.     object lblDescription: TLabel
  47.       Left = 8
  48.       Top = 192
  49.       Width = 313
  50.       Height = 41
  51.       AutoSize = False
  52.       Caption = 
  53.         'Select profiles and press OK button. Existing profiles are unche' +
  54.         'cked by default.'
  55.       WordWrap = True
  56.     end
  57.     object clbProfiles: TCheckListBox
  58.       Left = 8
  59.       Top = 16
  60.       Width = 209
  61.       Height = 169
  62.       ItemHeight = 13
  63.       TabOrder = 0
  64.     end
  65.     object btnCheckAll: TButton
  66.       Left = 224
  67.       Top = 16
  68.       Width = 97
  69.       Height = 25
  70.       Hint = 'Checks all profiles'
  71.       Caption = 'Check all'
  72.       ParentShowHint = False
  73.       ShowHint = True
  74.       TabOrder = 1
  75.       OnClick = btnCheckAllClick
  76.     end
  77.     object btnUncheckAll: TButton
  78.       Left = 224
  79.       Top = 48
  80.       Width = 97
  81.       Height = 25
  82.       Hint = 'Unchecks all profiles'
  83.       Caption = 'Reset all'
  84.       ParentShowHint = False
  85.       ShowHint = True
  86.       TabOrder = 2
  87.       OnClick = btnUncheckAllClick
  88.     end
  89.     object btnDefault: TButton
  90.       Left = 224
  91.       Top = 80
  92.       Width = 97
  93.       Height = 25
  94.       Hint = 'Resets all profiles to default state'
  95.       Caption = 'Default'
  96.       ParentShowHint = False
  97.       ShowHint = True
  98.       TabOrder = 3
  99.       OnClick = btnDefaultClick
  100.     end
  101.   end
  102. end
  103.