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