home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / REGINID.DFM / REGINID.txt
Text File  |  1997-03-21  |  3KB  |  144 lines

  1. object RegIniForm: TRegIniForm
  2.   Left = 200
  3.   Top = 108
  4.   Width = 476
  5.   Height = 264
  6.   Caption = 'RegIniForm'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   OnDestroy = FormDestroy
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object GroupBox1: TGroupBox
  17.     Left = 8
  18.     Top = 16
  19.     Width = 145
  20.     Height = 169
  21.     Caption = 'Write to Registry'
  22.     TabOrder = 0
  23.     object Label1: TLabel
  24.       Left = 16
  25.       Top = 120
  26.       Width = 51
  27.       Height = 13
  28.       Caption = 'String Test'
  29.     end
  30.     object CheckBox_Write: TCheckBox
  31.       Left = 16
  32.       Top = 24
  33.       Width = 97
  34.       Height = 17
  35.       Caption = 'Boolean Test'
  36.       TabOrder = 0
  37.     end
  38.     object RadioGroup_Write: TRadioGroup
  39.       Left = 16
  40.       Top = 48
  41.       Width = 105
  42.       Height = 65
  43.       Caption = 'Interger Test'
  44.       Columns = 3
  45.       ItemIndex = 0
  46.       Items.Strings = (
  47.         '0'
  48.         '1'
  49.         '2'
  50.         '3'
  51.         '4'
  52.         '5')
  53.       TabOrder = 1
  54.     end
  55.     object Edit_Write: TEdit
  56.       Left = 16
  57.       Top = 136
  58.       Width = 105
  59.       Height = 21
  60.       TabOrder = 2
  61.       Text = 'Edit_Write'
  62.     end
  63.   end
  64.   object GroupBox2: TGroupBox
  65.     Left = 160
  66.     Top = 16
  67.     Width = 289
  68.     Height = 169
  69.     Caption = 'Read from Registry'
  70.     TabOrder = 1
  71.     object Label3: TLabel
  72.       Left = 16
  73.       Top = 120
  74.       Width = 51
  75.       Height = 13
  76.       Caption = 'String Test'
  77.     end
  78.     object CheckBox_Read: TCheckBox
  79.       Left = 16
  80.       Top = 24
  81.       Width = 97
  82.       Height = 17
  83.       Caption = 'Boolean Test'
  84.       TabOrder = 0
  85.       OnClick = CheckBox_ReadClick
  86.     end
  87.     object RadioGroup_Read: TRadioGroup
  88.       Left = 16
  89.       Top = 48
  90.       Width = 105
  91.       Height = 65
  92.       Caption = 'Interger Test'
  93.       Columns = 3
  94.       ItemIndex = 0
  95.       Items.Strings = (
  96.         '0'
  97.         '1'
  98.         '2'
  99.         '3'
  100.         '4'
  101.         '5')
  102.       TabOrder = 1
  103.       OnClick = RadioGroup_ReadClick
  104.     end
  105.     object Edit_Read: TEdit
  106.       Left = 16
  107.       Top = 136
  108.       Width = 105
  109.       Height = 21
  110.       ReadOnly = True
  111.       TabOrder = 2
  112.       Text = 'Edit_Read'
  113.     end
  114.     object Memo_Read: TMemo
  115.       Left = 144
  116.       Top = 24
  117.       Width = 129
  118.       Height = 137
  119.       Lines.Strings = (
  120.         '')
  121.       ReadOnly = True
  122.       TabOrder = 3
  123.     end
  124.   end
  125.   object Button_Write: TButton
  126.     Left = 24
  127.     Top = 200
  128.     Width = 105
  129.     Height = 25
  130.     Caption = 'Write to Registry'
  131.     TabOrder = 2
  132.     OnClick = Button_WriteClick
  133.   end
  134.   object Button_Read: TButton
  135.     Left = 176
  136.     Top = 200
  137.     Width = 105
  138.     Height = 25
  139.     Caption = 'Read from Registry'
  140.     TabOrder = 3
  141.     OnClick = Button_ReadClick
  142.   end
  143. end
  144.