home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / EXPERTS / DLG.DFM / DLG.txt
Text File  |  1998-06-16  |  3KB  |  155 lines

  1. object DlgExpert: TDlgExpert
  2.   Left = 270
  3.   Top = 132
  4.   BorderStyle = bsDialog
  5.   Caption = 'Dialog Wizard'
  6.   ClientHeight = 166
  7.   ClientWidth = 387
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   OnCreate = FormCreate
  11.   OnDestroy = FormDestroy
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Sample: TPaintBox
  15.     Left = 8
  16.     Top = 12
  17.     Width = 92
  18.     Height = 73
  19.     OnPaint = SamplePaint
  20.   end
  21.   object CancelBtn: TButton
  22.     Left = 304
  23.     Top = 136
  24.     Width = 77
  25.     Height = 25
  26.     Cancel = True
  27.     Caption = 'Cancel'
  28.     ModalResult = 2
  29.     TabOrder = 0
  30.     OnClick = CancelClick
  31.   end
  32.   object PrevButton: TButton
  33.     Left = 135
  34.     Top = 136
  35.     Width = 77
  36.     Height = 25
  37.     Caption = '< &Back'
  38.     Enabled = False
  39.     TabOrder = 1
  40.     OnClick = PrevClick
  41.   end
  42.   object NextButton: TButton
  43.     Left = 212
  44.     Top = 136
  45.     Width = 77
  46.     Height = 25
  47.     Caption = '&Next >'
  48.     TabOrder = 2
  49.     OnClick = NextClick
  50.   end
  51.   object PageControl: TPageControl
  52.     Left = 112
  53.     Top = 7
  54.     Width = 269
  55.     Height = 119
  56.     ActivePage = Style
  57.     TabOrder = 3
  58.     TabStop = False
  59.     object Style: TTabSheet
  60.       Caption = 'Style'
  61.       TabVisible = False
  62.       object Label1: TLabel
  63.         Left = 6
  64.         Top = 8
  65.         Width = 109
  66.         Height = 13
  67.         AutoSize = False
  68.         Caption = 'Select dialog style:'
  69.       end
  70.       object rbSinglePage: TRadioButton
  71.         Left = 22
  72.         Top = 34
  73.         Width = 197
  74.         Height = 17
  75.         Caption = '&Single page dialog'
  76.         Checked = True
  77.         TabOrder = 0
  78.         TabStop = True
  79.         OnClick = StyleClick
  80.       end
  81.       object rbMultPg: TRadioButton
  82.         Left = 22
  83.         Top = 58
  84.         Width = 237
  85.         Height = 17
  86.         Caption = '&Multipage, using PageControl'
  87.         TabOrder = 1
  88.         OnClick = StyleClick
  89.       end
  90.     end
  91.     object Pages: TTabSheet
  92.       Caption = 'Pages'
  93.       TabVisible = False
  94.       object Label3: TLabel
  95.         Left = 9
  96.         Top = 6
  97.         Width = 232
  98.         Height = 13
  99.         AutoSize = False
  100.         Caption = 'Enter pages names for the mulit-page dialog:'
  101.         FocusControl = PageNames
  102.       end
  103.       object PageNames: TMemo
  104.         Left = 9
  105.         Top = 22
  106.         Width = 221
  107.         Height = 81
  108.         TabOrder = 0
  109.         WordWrap = False
  110.       end
  111.     end
  112.     object Buttons: TTabSheet
  113.       Caption = 'Buttons'
  114.       TabVisible = False
  115.       object Label2: TLabel
  116.         Left = 6
  117.         Top = 11
  118.         Width = 142
  119.         Height = 13
  120.         AutoSize = False
  121.         Caption = 'Select button placement:'
  122.       end
  123.       object RadioButton1: TRadioButton
  124.         Left = 22
  125.         Top = 36
  126.         Width = 120
  127.         Height = 17
  128.         Caption = 'N&o buttons'
  129.         Checked = True
  130.         TabOrder = 0
  131.         TabStop = True
  132.         OnClick = BtnClick
  133.       end
  134.       object rbBtnsV: TRadioButton
  135.         Left = 22
  136.         Top = 58
  137.         Width = 212
  138.         Height = 17
  139.         Caption = '&Vertical along right edge'
  140.         TabOrder = 1
  141.         OnClick = BtnClick
  142.       end
  143.       object rbBtnsH: TRadioButton
  144.         Left = 22
  145.         Top = 80
  146.         Width = 204
  147.         Height = 17
  148.         Caption = '&Horizontal along bottom'
  149.         TabOrder = 2
  150.         OnClick = BtnClick
  151.       end
  152.     end
  153.   end
  154. end
  155.