home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / EXPERTS.DLL / 0 / RCDATA / TDLGEXPERT / TDLGEXPERT.txt
Text File  |  1997-01-16  |  3KB  |  158 lines

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