home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk12 / lib.pak / FRMEXPRT.DFM / FRMEXPRT.txt
Encoding:
Text File  |  1995-08-24  |  20.1 KB  |  846 lines

  1. object FormExpert: TFormExpert
  2.   Left = 247
  3.   Top = 105
  4.   ActiveControl = NextButton
  5.   BorderStyle = bsDialog
  6.   Caption = 'Database Form Expert'
  7.   ClientHeight = 285
  8.   ClientWidth = 474
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = [fsBold]
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   OnPaint = FormPaint
  18.   TextHeight = 13
  19.   object Image1: TImage
  20.     Left = 112
  21.     Top = 4
  22.     Width = 17
  23.     Height = 25
  24.     IsControl = True
  25.   end
  26.   object Notebook1: TNotebook
  27.     Left = 126
  28.     Top = 1
  29.     Width = 354
  30.     Height = 254
  31.     PageIndex = 3
  32.     TabOrder = 1
  33.     IsControl = True
  34.     object TPage
  35.       Left = 0
  36.       Top = 0
  37.       Caption = 'QueryType'
  38.       IsControl = True
  39.       object Label1: TLabel
  40.         Left = 10
  41.         Top = 7
  42.         Width = 286
  43.         Height = 13
  44.         Caption = 'Choose the type of form that the Expert will create'
  45.         IsControl = True
  46.       end
  47.       object Label2: TLabel
  48.         Left = 10
  49.         Top = 22
  50.         Width = 133
  51.         Height = 13
  52.         Caption = 'from the options below.'
  53.         IsControl = True
  54.       end
  55.       object GroupBox2: TGroupBox
  56.         Left = 20
  57.         Top = 53
  58.         Width = 310
  59.         Height = 65
  60.         TabOrder = 0
  61.         IsControl = True
  62.         object Label19: TLabel
  63.           Left = 7
  64.           Top = 1
  65.           Width = 75
  66.           Height = 13
  67.           Caption = '&Form Options'
  68.           FocusControl = CreateSingle
  69.         end
  70.         object CreateSingle: TRadioButton
  71.           Left = 8
  72.           Top = 17
  73.           Width = 142
  74.           Height = 17
  75.           Caption = 'Create a simple form'
  76.           Checked = True
  77.           TabOrder = 0
  78.           TabStop = True
  79.           OnClick = CreateOptionClick
  80.           IsControl = True
  81.         end
  82.         object CreateMulti: TRadioButton
  83.           Left = 8
  84.           Top = 39
  85.           Width = 185
  86.           Height = 17
  87.           Caption = 'Create a master/detail form'
  88.           TabOrder = 1
  89.           OnClick = CreateOptionClick
  90.           IsControl = True
  91.         end
  92.       end
  93.       object GroupBox1: TGroupBox
  94.         Left = 20
  95.         Top = 126
  96.         Width = 310
  97.         Height = 65
  98.         TabOrder = 1
  99.         object Label20: TLabel
  100.           Left = 11
  101.           Top = 2
  102.           Width = 94
  103.           Height = 13
  104.           Caption = '&DataSet Options'
  105.           FocusControl = CreateTable
  106.         end
  107.         object CreateTable: TRadioButton
  108.           Left = 8
  109.           Top = 17
  110.           Width = 280
  111.           Height = 17
  112.           Caption = 'Create a form using TTable objects'
  113.           Checked = True
  114.           TabOrder = 0
  115.           TabStop = True
  116.           OnClick = CreateTableClick
  117.         end
  118.         object CreateQuery: TRadioButton
  119.           Left = 8
  120.           Top = 39
  121.           Width = 251
  122.           Height = 17
  123.           Caption = 'Create a Form using TQuery objects'
  124.           TabOrder = 1
  125.           OnClick = CreateQueryClick
  126.         end
  127.       end
  128.     end
  129.     object TPage
  130.       Left = 0
  131.       Top = 0
  132.       Caption = 'Table'
  133.       IsControl = True
  134.       object TableLine: TLabel
  135.         Left = 10
  136.         Top = 7
  137.         Width = 162
  138.         Height = 13
  139.         Caption = 'Choose a table for the query'
  140.         IsControl = True
  141.       end
  142.       object Label25: TLabel
  143.         Left = 185
  144.         Top = 187
  145.         Width = 115
  146.         Height = 13
  147.         Caption = 'Dri&ve or Alias name:'
  148.         FocusControl = AliasDriveList
  149.         IsControl = True
  150.       end
  151.       object Label26: TLabel
  152.         Left = 20
  153.         Top = 186
  154.         Width = 102
  155.         Height = 13
  156.         Caption = 'List Files of &Type:'
  157.         FocusControl = FilterList
  158.         IsControl = True
  159.       end
  160.       object Label27: TLabel
  161.         Left = 19
  162.         Top = 39
  163.         Width = 73
  164.         Height = 13
  165.         Caption = 'Table &Name:'
  166.         FocusControl = FileEdit
  167.         IsControl = True
  168.       end
  169.       object DirPath: TLabel
  170.         Left = 185
  171.         Top = 40
  172.         Width = 66
  173.         Height = 13
  174.         Caption = '&Directories:'
  175.         FocusControl = AliasPathList
  176.         IsControl = True
  177.       end
  178.       object PathText: TLabel
  179.         Left = 187
  180.         Top = 62
  181.         Width = 144
  182.         Height = 13
  183.         AutoSize = False
  184.         Caption = 'Current Path'
  185.         IsControl = True
  186.       end
  187.       object FilterList: TFilterComboBox
  188.         Left = 20
  189.         Top = 201
  190.         Width = 157
  191.         Height = 20
  192.         FileList = AliasFileList
  193.         TabOrder = 3
  194.         OnChange = FilterListChange
  195.         IsControl = True
  196.       end
  197.       object FileEdit: TEdit
  198.         Left = 20
  199.         Top = 55
  200.         Width = 157
  201.         Height = 20
  202.         TabOrder = 0
  203.         OnChange = FileEditChange
  204.         OnKeyPress = FileEditKeyPress
  205.         IsControl = True
  206.       end
  207.       object AliasDriveList: TAliasDrive
  208.         Left = 185
  209.         Top = 202
  210.         Width = 145
  211.         Height = 19
  212.         TabOrder = 4
  213.         OnChange = AliasDriveListChange
  214.         IsControl = True
  215.       end
  216.       object AliasPathList: TAliasListBox
  217.         Left = 184
  218.         Top = 82
  219.         Width = 145
  220.         Height = 98
  221.         ItemHeight = 16
  222.         TabOrder = 2
  223.         OnChange = AliasPathListChange
  224.         OnClick = AliasPathListChange
  225.         IsControl = True
  226.       end
  227.       object AliasFileList: TAliasFileListBox
  228.         Left = 20
  229.         Top = 82
  230.         Width = 157
  231.         Height = 98
  232.         ItemHeight = 16
  233.         ShowGlyphs = True
  234.         TabOrder = 1
  235.         OnClick = AliasFileListClick
  236.         OnDblClick = AliasFileListDblClick
  237.         IsControl = True
  238.       end
  239.     end
  240.     object TPage
  241.       Left = 0
  242.       Top = 0
  243.       Caption = 'PickFields'
  244.       IsControl = True
  245.       object Label3: TLabel
  246.         Left = 10
  247.         Top = 21
  248.         Width = 284
  249.         Height = 13
  250.         Caption = 'Available Fields list and then click the ">" button.'
  251.         IsControl = True
  252.       end
  253.       object Label14: TLabel
  254.         Left = 10
  255.         Top = 35
  256.         Width = 243
  257.         Height = 13
  258.         Caption = 'To choose all fields, click the ">>" button.'
  259.         IsControl = True
  260.       end
  261.       object Label15: TLabel
  262.         Left = 10
  263.         Top = 7
  264.         Width = 268
  265.         Height = 13
  266.         Caption = 'To add fields to the form, click each one in the'
  267.         IsControl = True
  268.       end
  269.       object GroupBox3: TGroupBox
  270.         Left = 10
  271.         Top = 61
  272.         Width = 331
  273.         Height = 161
  274.         TabOrder = 0
  275.         IsControl = True
  276.         object Label22: TLabel
  277.           Left = 25
  278.           Top = 1
  279.           Width = 94
  280.           Height = 13
  281.           Caption = 'Available Fields:'
  282.           Font.Color = clBlack
  283.           Font.Height = -11
  284.           Font.Name = 'MS Sans Serif'
  285.           Font.Style = [fsBold]
  286.           ParentFont = False
  287.           IsControl = True
  288.         end
  289.         object Label24: TLabel
  290.           Left = 181
  291.           Top = 2
  292.           Width = 141
  293.           Height = 13
  294.           Caption = 'Ordered Selected Fields:'
  295.           Font.Color = clBlack
  296.           Font.Height = -11
  297.           Font.Name = 'MS Sans Serif'
  298.           Font.Style = [fsBold]
  299.           ParentFont = False
  300.           IsControl = True
  301.         end
  302.         object AvailableList: TListBox
  303.           Left = 18
  304.           Top = 29
  305.           Width = 121
  306.           Height = 93
  307.           DragMode = dmAutomatic
  308.           ItemHeight = 13
  309.           MultiSelect = True
  310.           TabOrder = 0
  311.           OnDblClick = ListDblClick
  312.           OnDragDrop = ListDragDrop
  313.           OnDragOver = ListDragOver
  314.         end
  315.         object ChosenList: TListBox
  316.           Left = 192
  317.           Top = 29
  318.           Width = 121
  319.           Height = 93
  320.           DragMode = dmAutomatic
  321.           ItemHeight = 13
  322.           MultiSelect = True
  323.           TabOrder = 1
  324.           OnDblClick = ListDblClick
  325.           OnDragDrop = ListDragDrop
  326.           OnDragOver = ListDragOver
  327.         end
  328.         object UpButton: TBitBtn
  329.           Left = 217
  330.           Top = 130
  331.           Width = 28
  332.           Height = 22
  333.           TabOrder = 2
  334.           OnClick = UpButtonClick
  335.           Glyph.Data = {
  336.             F6000000424DF600000000000000760000002800000010000000100000000100
  337.             0400000000008000000000000000000000001000000000000000000000000000
  338.             BF0000BF000000BFBF00BF000000BF00BF00BFBF0000C0C0C000808080000000
  339.             FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
  340.             333333333333333333333333338888833333333334444483333333333CCCC483
  341.             333333333CCCC483333333333CCCC483333333333CCCC483333333333CCCC488
  342.             8333333CCCCCCCCC33333333CCCCCCC3333333333CCCCC333333333333CCC333
  343.             33333333333C3333333333333333333333333333333333333333}
  344.         end
  345.         object DownButton: TBitBtn
  346.           Left = 254
  347.           Top = 130
  348.           Width = 28
  349.           Height = 22
  350.           TabOrder = 3
  351.           OnClick = DownButtonClick
  352.           Glyph.Data = {
  353.             F6000000424DF600000000000000760000002800000010000000100000000100
  354.             0400000000008000000000000000000000001000000000000000000000000000
  355.             BF0000BF000000BFBF00BF000000BF00BF00BFBF0000C0C0C000808080000000
  356.             FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
  357.             333333333333833333333333333488333333333333CC4883333333333CCCC488
  358.             33333333CCCCCC488333333CCCCCC444333333333CCCC483333333333CCCC483
  359.             333333333CCCC483333333333CCCC483333333333CCCC483333333333CCCC433
  360.             3333333333333333333333333333333333333333333333333333}
  361.         end
  362.         object BitBtn3: TBitBtn
  363.           Left = 151
  364.           Top = 34
  365.           Width = 27
  366.           Height = 20
  367.           Caption = '>'
  368.           TabOrder = 4
  369.           OnClick = Button1Click
  370.         end
  371.         object BitBtn4: TBitBtn
  372.           Left = 151
  373.           Top = 56
  374.           Width = 27
  375.           Height = 20
  376.           Caption = '>>'
  377.           TabOrder = 5
  378.           OnClick = Button2Click
  379.         end
  380.         object BitBtn5: TBitBtn
  381.           Left = 152
  382.           Top = 79
  383.           Width = 27
  384.           Height = 20
  385.           Caption = '<'
  386.           TabOrder = 6
  387.           OnClick = Button3Click
  388.         end
  389.         object BitBtn6: TBitBtn
  390.           Left = 152
  391.           Top = 101
  392.           Width = 27
  393.           Height = 20
  394.           Caption = '<<'
  395.           TabOrder = 7
  396.           OnClick = Button4Click
  397.         end
  398.       end
  399.     end
  400.     object TPage
  401.       Left = 0
  402.       Top = 0
  403.       Caption = 'Layout'
  404.       IsControl = True
  405.       object LayoutLine1: TLabel
  406.         Left = 10
  407.         Top = 7
  408.         Width = 261
  409.         Height = 13
  410.         Caption = 'Choose the way you want the Expert to layout'
  411.         IsControl = True
  412.       end
  413.       object Label7: TLabel
  414.         Left = 10
  415.         Top = 21
  416.         Width = 271
  417.         Height = 13
  418.         Caption = 'fields on the form by clicking one of the options'
  419.         IsControl = True
  420.       end
  421.       object Label8: TLabel
  422.         Left = 40
  423.         Top = 65
  424.         Width = 251
  425.         Height = 13
  426.         Caption = 'Place each field side-by-side starting at the left corner'
  427.         Font.Color = clBlack
  428.         Font.Height = -11
  429.         Font.Name = 'MS Sans Serif'
  430.         Font.Style = []
  431.         ParentFont = False
  432.         IsControl = True
  433.       end
  434.       object Label9: TLabel
  435.         Left = 41
  436.         Top = 80
  437.         Width = 156
  438.         Height = 13
  439.         Caption = 'working towards the bottom right.'
  440.         Font.Color = clBlack
  441.         Font.Height = -11
  442.         Font.Name = 'MS Sans Serif'
  443.         Font.Style = []
  444.         ParentFont = False
  445.         IsControl = True
  446.       end
  447.       object Label10: TLabel
  448.         Left = 40
  449.         Top = 113
  450.         Width = 225
  451.         Height = 13
  452.         Caption = 'Place each field directly below the previous one'
  453.         Font.Color = clBlack
  454.         Font.Height = -11
  455.         Font.Name = 'MS Sans Serif'
  456.         Font.Style = []
  457.         ParentFont = False
  458.         IsControl = True
  459.       end
  460.       object Label11: TLabel
  461.         Left = 40
  462.         Top = 129
  463.         Width = 193
  464.         Height = 13
  465.         Caption = 'working from the top down to the bottom.'
  466.         Font.Color = clBlack
  467.         Font.Height = -11
  468.         Font.Name = 'MS Sans Serif'
  469.         Font.Style = []
  470.         ParentFont = False
  471.         IsControl = True
  472.       end
  473.       object Label12: TLabel
  474.         Left = 38
  475.         Top = 167
  476.         Width = 270
  477.         Height = 13
  478.         Caption = 'Place each field within its own column inside a grid object'
  479.         Font.Color = clBlack
  480.         Font.Height = -11
  481.         Font.Name = 'MS Sans Serif'
  482.         Font.Style = []
  483.         ParentFont = False
  484.         IsControl = True
  485.       end
  486.       object Label13: TLabel
  487.         Left = 37
  488.         Top = 180
  489.         Width = 115
  490.         Height = 13
  491.         Caption = 'working from left to right.'
  492.         Font.Color = clBlack
  493.         Font.Height = -11
  494.         Font.Name = 'MS Sans Serif'
  495.         Font.Style = []
  496.         ParentFont = False
  497.         IsControl = True
  498.       end
  499.       object HorzButton: TRadioButton
  500.         Left = 21
  501.         Top = 48
  502.         Width = 121
  503.         Height = 17
  504.         Caption = 'Hori&zontal'
  505.         Checked = True
  506.         TabOrder = 0
  507.         TabStop = True
  508.         OnClick = LayoutButtonClick
  509.         IsControl = True
  510.       end
  511.       object VertButton: TRadioButton
  512.         Left = 21
  513.         Top = 97
  514.         Width = 74
  515.         Height = 17
  516.         Caption = '&Vertical'
  517.         TabOrder = 1
  518.         OnClick = LayoutButtonClick
  519.         IsControl = True
  520.       end
  521.       object GridButton: TRadioButton
  522.         Left = 20
  523.         Top = 150
  524.         Width = 65
  525.         Height = 17
  526.         Caption = '&Grid'
  527.         TabOrder = 2
  528.         OnClick = LayoutButtonClick
  529.         IsControl = True
  530.       end
  531.     end
  532.     object TPage
  533.       Left = 0
  534.       Top = 0
  535.       Caption = 'Labels'
  536.       IsControl = True
  537.       object Label5: TLabel
  538.         Left = 10
  539.         Top = 7
  540.         Width = 271
  541.         Height = 13
  542.         Caption = 'For the vertical layout, choose where the labels'
  543.         IsControl = True
  544.       end
  545.       object Label23: TLabel
  546.         Left = 10
  547.         Top = 21
  548.         Width = 94
  549.         Height = 13
  550.         Caption = 'are to be placed'
  551.         IsControl = True
  552.       end
  553.       object Label28: TLabel
  554.         Left = 40
  555.         Top = 66
  556.         Width = 205
  557.         Height = 13
  558.         Caption = 'Display the lables to the left of the data field'
  559.         Font.Color = clBlack
  560.         Font.Height = -11
  561.         Font.Name = 'MS Sans Serif'
  562.         Font.Style = []
  563.         ParentFont = False
  564.         IsControl = True
  565.       end
  566.       object Label29: TLabel
  567.         Left = 40
  568.         Top = 105
  569.         Width = 179
  570.         Height = 13
  571.         Caption = 'Display the labels above the data field'
  572.         Font.Color = clBlack
  573.         Font.Height = -11
  574.         Font.Name = 'MS Sans Serif'
  575.         Font.Style = []
  576.         ParentFont = False
  577.         IsControl = True
  578.       end
  579.       object LeftButton: TRadioButton
  580.         Left = 20
  581.         Top = 49
  582.         Width = 121
  583.         Height = 17
  584.         Caption = 'Left'
  585.         Checked = True
  586.         TabOrder = 0
  587.         TabStop = True
  588.         OnClick = PosButtonClick
  589.         IsControl = True
  590.       end
  591.       object TopButton: TRadioButton
  592.         Left = 20
  593.         Top = 87
  594.         Width = 121
  595.         Height = 17
  596.         Caption = 'Top'
  597.         TabOrder = 1
  598.         OnClick = PosButtonClick
  599.         IsControl = True
  600.       end
  601.     end
  602.     object TPage
  603.       Left = 0
  604.       Top = 0
  605.       Caption = 'Binding'
  606.       IsControl = True
  607.       object Bevel1: TBevel
  608.         Left = 4
  609.         Top = 79
  610.         Width = 342
  611.         Height = 169
  612.         Shape = bsFrame
  613.       end
  614.       object Label30: TLabel
  615.         Left = 12
  616.         Top = 82
  617.         Width = 71
  618.         Height = 13
  619.         Caption = 'D&etail Fields'
  620.         FocusControl = DetailList
  621.         IsControl = True
  622.       end
  623.       object Label31: TLabel
  624.         Left = 222
  625.         Top = 84
  626.         Width = 76
  627.         Height = 13
  628.         Caption = '&Master Fields'
  629.         FocusControl = MasterList
  630.         IsControl = True
  631.       end
  632.       object Label32: TLabel
  633.         Left = 10
  634.         Top = 7
  635.         Width = 315
  636.         Height = 13
  637.         Caption = 'Select pairs of fields from the field lists that will join the'
  638.         IsControl = True
  639.       end
  640.       object Label33: TLabel
  641.         Left = 10
  642.         Top = 21
  643.         Width = 326
  644.         Height = 13
  645.         Caption = 'two queries.  Use the add button to add the selected pair'
  646.         IsControl = True
  647.       end
  648.       object IndexLabel: TLabel
  649.         Left = 8
  650.         Top = 56
  651.         Width = 101
  652.         Height = 13
  653.         Caption = 'A&vailable Indexes'
  654.         FocusControl = IndexList
  655.       end
  656.       object Label17: TLabel
  657.         Left = 10
  658.         Top = 35
  659.         Width = 58
  660.         Height = 13
  661.         Caption = 'to the list.'
  662.       end
  663.       object Label18: TLabel
  664.         Left = 12
  665.         Top = 171
  666.         Width = 75
  667.         Height = 13
  668.         Caption = '&Joined Fields'
  669.         FocusControl = BindList
  670.       end
  671.       object DetailList: TListBox
  672.         Left = 12
  673.         Top = 98
  674.         Width = 117
  675.         Height = 67
  676.         IntegralHeight = True
  677.         ItemHeight = 13
  678.         TabOrder = 0
  679.         OnClick = BindingListClick
  680.         IsControl = True
  681.       end
  682.       object MasterList: TListBox
  683.         Left = 222
  684.         Top = 99
  685.         Width = 117
  686.         Height = 67
  687.         IntegralHeight = True
  688.         ItemHeight = 13
  689.         TabOrder = 1
  690.         OnClick = BindingListClick
  691.         IsControl = True
  692.       end
  693.       object AddButton: TButton
  694.         Left = 136
  695.         Top = 120
  696.         Width = 77
  697.         Height = 27
  698.         Caption = '&Add'
  699.         TabOrder = 2
  700.         OnClick = AddButtonClick
  701.         IsControl = True
  702.       end
  703.       object DeleteButton: TButton
  704.         Left = 262
  705.         Top = 186
  706.         Width = 77
  707.         Height = 27
  708.         Caption = '&Delete'
  709.         TabOrder = 3
  710.         OnClick = DeleteButtonClick
  711.         IsControl = True
  712.       end
  713.       object ClearButton: TButton
  714.         Left = 262
  715.         Top = 215
  716.         Width = 77
  717.         Height = 27
  718.         Caption = '&Clear'
  719.         TabOrder = 4
  720.         OnClick = ClearButtonClick
  721.         IsControl = True
  722.       end
  723.       object BindList: TListBox
  724.         Left = 12
  725.         Top = 187
  726.         Width = 243
  727.         Height = 54
  728.         ItemHeight = 13
  729.         MultiSelect = True
  730.         TabOrder = 5
  731.         OnClick = BindListClick
  732.         IsControl = True
  733.       end
  734.       object IndexList: TComboBox
  735.         Left = 123
  736.         Top = 54
  737.         Width = 207
  738.         Height = 20
  739.         Style = csDropDownList
  740.         ItemHeight = 13
  741.         TabOrder = 6
  742.         OnChange = IndexListChange
  743.       end
  744.     end
  745.     object TPage
  746.       Left = 0
  747.       Top = 0
  748.       Caption = 'FormName'
  749.       IsControl = True
  750.       object Label6: TLabel
  751.         Left = 10
  752.         Top = 21
  753.         Width = 206
  754.         Height = 13
  755.         Caption = 'on Create to generate the new form.'
  756.         IsControl = True
  757.       end
  758.       object Label4: TLabel
  759.         Left = 10
  760.         Top = 7
  761.         Width = 271
  762.         Height = 13
  763.         Caption = 'You have now completed the form design. Click'
  764.         IsControl = True
  765.       end
  766.       object GenMainForm: TCheckBox
  767.         Left = 21
  768.         Top = 64
  769.         Width = 144
  770.         Height = 17
  771.         Caption = 'Generate a main form'
  772.         State = cbChecked
  773.         TabOrder = 0
  774.       end
  775.     end
  776.   end
  777.   object BitBtn1: TBitBtn
  778.     Left = 128
  779.     Top = 252
  780.     Width = 77
  781.     Height = 28
  782.     TabOrder = 2
  783.     OnClick = BitBtn1Click
  784.     Kind = bkCancel
  785.     Margin = 2
  786.     Spacing = -1
  787.     IsControl = True
  788.   end
  789.   object BitBtn2: TBitBtn
  790.     Left = 212
  791.     Top = 252
  792.     Width = 77
  793.     Height = 28
  794.     TabOrder = 3
  795.     Kind = bkHelp
  796.     Margin = 2
  797.     Spacing = -1
  798.     IsControl = True
  799.   end
  800.   object NextButton: TBitBtn
  801.     Left = 388
  802.     Top = 252
  803.     Width = 77
  804.     Height = 28
  805.     Caption = 'Next'
  806.     TabOrder = 0
  807.     OnClick = NextButtonClick
  808.     Margin = 2
  809.     Spacing = -1
  810.     IsControl = True
  811.   end
  812.   object PrevButton: TBitBtn
  813.     Left = 303
  814.     Top = 252
  815.     Width = 77
  816.     Height = 28
  817.     Caption = 'Prev'
  818.     Enabled = False
  819.     TabOrder = 4
  820.     OnClick = PrevButtonClick
  821.     Margin = 2
  822.     Spacing = -1
  823.     IsControl = True
  824.   end
  825.   object CreateButton: TBitBtn
  826.     Left = 388
  827.     Top = 252
  828.     Width = 77
  829.     Height = 28
  830.     Caption = 'Create'
  831.     Default = True
  832.     ModalResult = 1
  833.     TabOrder = 5
  834.     Visible = False
  835.     IsControl = True
  836.   end
  837.   object Table1: TTable
  838.     Left = 66
  839.     Top = 256
  840.   end
  841.   object Table2: TTable
  842.     Left = 95
  843.     Top = 257
  844.   end
  845. end
  846.