home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / OPTIONS / MAIN.dfm / MAIN.txt
Text File  |  1998-02-17  |  3KB  |  127 lines

  1. object MainForm: TMainForm
  2.   Left = 298
  3.   Top = 176
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'Options Dialog Demonstration'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 96
  14.   TextHeight = 16
  15.   object TabbedNotebook1: TTabbedNotebook
  16.     Left = 0
  17.     Top = 0
  18.     Width = 427
  19.     Height = 273
  20.     TabFont.Charset = DEFAULT_CHARSET
  21.     TabFont.Color = clBtnText
  22.     TabFont.Height = -11
  23.     TabFont.Name = 'MS Sans Serif'
  24.     TabFont.Style = []
  25.     TabOrder = 0
  26.     object TTabPage
  27.       Left = 4
  28.       Top = 27
  29.       Caption = 'First'
  30.       object CheckBox1: TCheckBox
  31.         Left = 128
  32.         Top = 56
  33.         Width = 97
  34.         Height = 17
  35.         AllowGrayed = True
  36.         Caption = 'CheckBox1'
  37.         TabOrder = 0
  38.       end
  39.       object CheckBox2: TCheckBox
  40.         Left = 128
  41.         Top = 80
  42.         Width = 97
  43.         Height = 17
  44.         AllowGrayed = True
  45.         Caption = 'CheckBox2'
  46.         TabOrder = 1
  47.       end
  48.       object CheckBox3: TCheckBox
  49.         Left = 128
  50.         Top = 104
  51.         Width = 97
  52.         Height = 17
  53.         AllowGrayed = True
  54.         Caption = 'CheckBox3'
  55.         TabOrder = 2
  56.       end
  57.     end
  58.     object TTabPage
  59.       Left = 4
  60.       Top = 27
  61.       Caption = 'Second'
  62.       object RadioButton1: TRadioButton
  63.         Left = 112
  64.         Top = 48
  65.         Width = 113
  66.         Height = 17
  67.         Caption = 'RadioButton1'
  68.         TabOrder = 0
  69.       end
  70.       object RadioButton2: TRadioButton
  71.         Left = 112
  72.         Top = 80
  73.         Width = 113
  74.         Height = 17
  75.         Caption = 'RadioButton2'
  76.         TabOrder = 1
  77.       end
  78.       object RadioButton3: TRadioButton
  79.         Left = 112
  80.         Top = 112
  81.         Width = 113
  82.         Height = 17
  83.         Caption = 'RadioButton3'
  84.         TabOrder = 2
  85.       end
  86.     end
  87.     object TTabPage
  88.       Left = 4
  89.       Top = 27
  90.       Caption = 'Third'
  91.       object Edit1: TEdit
  92.         Left = 96
  93.         Top = 48
  94.         Width = 121
  95.         Height = 24
  96.         TabOrder = 0
  97.         Text = 'Edit1'
  98.       end
  99.       object Edit2: TEdit
  100.         Left = 96
  101.         Top = 88
  102.         Width = 121
  103.         Height = 24
  104.         TabOrder = 1
  105.         Text = 'Edit2'
  106.       end
  107.     end
  108.   end
  109.   object BitBtn1: TBitBtn
  110.     Left = 208
  111.     Top = 200
  112.     Width = 89
  113.     Height = 33
  114.     Caption = 'Save...'
  115.     TabOrder = 1
  116.     OnClick = BitBtn1Click
  117.   end
  118.   object BitBtn2: TBitBtn
  119.     Left = 312
  120.     Top = 200
  121.     Width = 89
  122.     Height = 33
  123.     TabOrder = 2
  124.     Kind = bkClose
  125.   end
  126. end
  127.