home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / 9UTI / CRONIT.ZIP / _SETUP.1 / cronit.exe / 0 / RCDATA / TFRMREGISTRY / TFRMREGISTRY.txt
Text File  |  1998-04-15  |  2KB  |  97 lines

  1. object frmRegistry: TfrmRegistry
  2.   Left = 351
  3.   Top = 422
  4.   BorderStyle = bsToolWindow
  5.   Caption = 'Select Registry Key'
  6.   ClientHeight = 232
  7.   ClientWidth = 369
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnShow = FormShow
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 8
  18.     Top = 176
  19.     Width = 18
  20.     Height = 13
  21.     Caption = '&Key'
  22.     FocusControl = txtKey
  23.   end
  24.   object Label5: TLabel
  25.     Left = 8
  26.     Top = 44
  27.     Width = 45
  28.     Height = 13
  29.     Caption = '&Sub Keys'
  30.   end
  31.   object Label4: TLabel
  32.     Left = 8
  33.     Top = 12
  34.     Width = 23
  35.     Height = 13
  36.     Caption = '&Root'
  37.     FocusControl = cmbRoot
  38.   end
  39.   object btnOk: TButton
  40.     Left = 209
  41.     Top = 202
  42.     Width = 75
  43.     Height = 23
  44.     Caption = 'Ok'
  45.     ModalResult = 1
  46.     TabOrder = 0
  47.     OnClick = btnOkClick
  48.   end
  49.   object btnCancel: TButton
  50.     Left = 289
  51.     Top = 202
  52.     Width = 75
  53.     Height = 23
  54.     Caption = 'Cancel'
  55.     ModalResult = 2
  56.     TabOrder = 1
  57.   end
  58.   object txtKey: TEdit
  59.     Left = 64
  60.     Top = 172
  61.     Width = 300
  62.     Height = 21
  63.     Hint = 
  64.       'This is the key where the registration information will be kept.' +
  65.       ' You may modify this key.'
  66.     ParentShowHint = False
  67.     ShowHint = True
  68.     TabOrder = 2
  69.   end
  70.   object lbSubKeys: TListBox
  71.     Left = 64
  72.     Top = 40
  73.     Width = 300
  74.     Height = 121
  75.     ItemHeight = 13
  76.     TabOrder = 3
  77.     OnDblClick = lbSubKeysDblClick
  78.   end
  79.   object cmbRoot: TComboBox
  80.     Left = 64
  81.     Top = 8
  82.     Width = 300
  83.     Height = 21
  84.     Style = csDropDownList
  85.     ItemHeight = 13
  86.     Items.Strings = (
  87.       'HKEY_CLASSES_ROOT'
  88.       'HKEY_CURRENT_USER'
  89.       'HKEY_LOCAL_MACHINE'
  90.       'HKEY_USERS'
  91.       'HKEY_CURRENT_CONFIG'
  92.       'HKEY_DYN_DATA')
  93.     TabOrder = 4
  94.     OnChange = cmbRootChange
  95.   end
  96. end
  97.