home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / D12 / MRO.ZIP / MROUNIT1.DFM / MROUNIT1.txt
Text File  |  1996-05-06  |  52KB  |  1,979 lines

  1. object Form1: TForm1
  2.   Left = 166
  3.   Top = 106
  4.   Width = 623
  5.   Height = 462
  6.   Caption = 'Demonstration of TtaDBMRO'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   KeyPreview = True
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnKeyDown = FormKeyDown
  16.   TextHeight = 16
  17.   object TabSet1: TTabSet
  18.     Left = 0
  19.     Top = 410
  20.     Width = 615
  21.     Height = 25
  22.     Align = alBottom
  23.     Font.Color = clBlue
  24.     Font.Height = -16
  25.     Font.Name = 'Arial'
  26.     Font.Style = [fsBold]
  27.     Tabs.Strings = (
  28.       'Introduction'
  29.       'Main Demo'
  30.       'Lookups, CheckBoxes, ...'
  31.       'BLOB Demo'
  32.       '3d Party')
  33.     TabIndex = 0
  34.     OnChange = TabSet1Change
  35.   end
  36.   object Notebook1: TNotebook
  37.     Left = 0
  38.     Top = 0
  39.     Width = 615
  40.     Height = 410
  41.     Align = alClient
  42.     TabOrder = 1
  43.     OnPageChanged = Notebook1PageChanged
  44.     object TPage
  45.       Left = 0
  46.       Top = 0
  47.       Caption = 'Introduction'
  48.       object IntroTAPanel: TPanel
  49.         Left = 16
  50.         Top = 300
  51.         Width = 585
  52.         Height = 81
  53.         BevelInner = bvRaised
  54.         BevelOuter = bvLowered
  55.         TabOrder = 0
  56.         object IntroTALabel1: TLabel
  57.           Left = 221
  58.           Top = 13
  59.           Width = 142
  60.           Height = 17
  61.           Caption = 'Tamarack Associates'
  62.           Font.Color = clBlack
  63.           Font.Height = -15
  64.           Font.Name = 'Arial'
  65.           Font.Style = []
  66.           ParentFont = False
  67.         end
  68.         object IntroTALabel2: TLabel
  69.           Left = 223
  70.           Top = 35
  71.           Width = 139
  72.           Height = 14
  73.           Caption = '72365.46@compuserve.com'
  74.           Font.Color = clBlack
  75.           Font.Height = -11
  76.           Font.Name = 'Arial'
  77.           Font.Style = []
  78.           ParentFont = False
  79.         end
  80.         object IntroTALabel3: TLabel
  81.           Left = 235
  82.           Top = 53
  83.           Width = 114
  84.           Height = 14
  85.           Caption = 'Copyright ∩┐╜ 1995, 1996'
  86.           Font.Color = clBlack
  87.           Font.Height = -11
  88.           Font.Name = 'Arial'
  89.           Font.Style = []
  90.           ParentFont = False
  91.         end
  92.       end
  93.       object IntroMemo: TMemo
  94.         Left = 16
  95.         Top = 80
  96.         Width = 585
  97.         Height = 201
  98.         Color = clBtnFace
  99.         Font.Color = clBlack
  100.         Font.Height = -13
  101.         Font.Name = 'System'
  102.         Font.Style = [fsBold]
  103.         Lines.Strings = (
  104.           
  105.             'Tired of TDBGrids that cannot display all the fields you∩┐╜d like ' +
  106.             'without endlessly '
  107.           
  108.             'scrolling horizontally?  Wish you had a grid where each record c' +
  109.             'ould occupy multiple '
  110.           
  111.             'lines, contain any Borland field data aware control, use differe' +
  112.             'nt fonts and colors?  '
  113.           
  114.             'Perhaps you'#39'd like to put some pizzazz in the title?  Maybe even' +
  115.             ' differentiate the '
  116.           
  117.             'current record from the other visible records by using different' +
  118.             ' colors and/or fonts?  Or '
  119.           
  120.             'possibly you'#39've tried the TDBCtrlGrid and have grown frustrated ' +
  121.             'by its limited support '
  122.           'of data aware controls and lack of flexibility?'
  123.           ''
  124.           
  125.             'Welcome to the TtaDBMRO!  This Delphi component provides Multipl' +
  126.             'e Record Object '
  127.           
  128.             '(MRO) capability for database applications.  Simply add a TTable' +
  129.             ', TDataSource, '
  130.           
  131.             'TtaDBMRO, and a TPanel that contains data aware controls.  That∩┐╜' +
  132.             's it!  The contents of '
  133.           'the TPanel are stacked vertically one above the other.'
  134.           ''
  135.           'TtaDBMRO provides the following features:'
  136.           ''
  137.           '∩┐╜ Uses a TPanel that contains data aware controls'
  138.           '∩┐╜ Supports all Borland field data aware controls'
  139.           '∩┐╜ Full Delphi 1.0 & 2.0 support'
  140.           '∩┐╜ Supports user defined titles'
  141.           '∩┐╜ Provides numerous event hooks to allow for customization'
  142.           '∩┐╜ Compatible with InfoPower from Woll2Woll Software'
  143.           '∩┐╜ Compatible with Orpheus from TurboPower Software'
  144.           '∩┐╜ Compatible with TDBLookupComboPlus & TDBComboBoxPlus'
  145.           '∩┐╜ Can automatically manage the height and width of the MRO'
  146.           '∩┐╜ Fields may be from multiple DataSources'
  147.           ''
  148.           
  149.             'The best way to grasp what a MRO does is just click one of the D' +
  150.             'emo tabs below!')
  151.         ParentFont = False
  152.         ReadOnly = True
  153.         ScrollBars = ssVertical
  154.         TabOrder = 1
  155.       end
  156.       object IntroPanel: TPanel
  157.         Left = 16
  158.         Top = 8
  159.         Width = 585
  160.         Height = 65
  161.         BevelInner = bvRaised
  162.         BevelOuter = bvLowered
  163.         Caption = 'TtaDBMRO 2.0'
  164.         Font.Color = clBlue
  165.         Font.Height = -24
  166.         Font.Name = 'Arial'
  167.         Font.Style = [fsBold]
  168.         ParentFont = False
  169.         TabOrder = 2
  170.       end
  171.       object InfoCheckBox: TCheckBox
  172.         Left = 488
  173.         Top = 385
  174.         Width = 115
  175.         Height = 17
  176.         Caption = 'Show info dialogs'
  177.         Font.Color = clBlack
  178.         Font.Height = -11
  179.         Font.Name = 'Arial'
  180.         Font.Style = []
  181.         ParentFont = False
  182.         State = cbChecked
  183.         TabOrder = 3
  184.       end
  185.     end
  186.     object TPage
  187.       Left = 0
  188.       Top = 0
  189.       Caption = 'Main Demo'
  190.       object MainMRO: TtaDBMRO
  191.         Left = 8
  192.         Top = 8
  193.         Width = 411
  194.         Height = 374
  195.         Cursor = crArrow
  196.         Hint = 'These are the nonselected records'
  197.         Color = clBtnFace
  198.         DataSource = CustomerDataSource
  199.         Font.Color = clBlack
  200.         Font.Height = -11
  201.         Font.Name = 'Courier New'
  202.         Font.Style = []
  203.         Options = [dgEditing, dgIndicator, dgRowLines, dgConfirmDelete, dgCancelOnExit]
  204.         ParentFont = False
  205.         ParentShowHint = False
  206.         ShowHint = True
  207.         TabOrder = 0
  208.         TitleFont.Color = clWindowText
  209.         TitleFont.Height = -13
  210.         TitleFont.Name = 'System'
  211.         TitleFont.Style = []
  212.         RecordPanel = MainRecordPanel
  213.         TitlePanel = MainTitlePanel
  214.         UseColor = False
  215.       end
  216.       object MainTAPanel: TPanel
  217.         Left = 432
  218.         Top = 300
  219.         Width = 161
  220.         Height = 81
  221.         BevelInner = bvRaised
  222.         BevelOuter = bvLowered
  223.         TabOrder = 1
  224.         object MainTALabel1: TLabel
  225.           Left = 9
  226.           Top = 13
  227.           Width = 142
  228.           Height = 17
  229.           Caption = 'Tamarack Associates'
  230.           Font.Color = clBlack
  231.           Font.Height = -15
  232.           Font.Name = 'Arial'
  233.           Font.Style = []
  234.           ParentFont = False
  235.         end
  236.         object MainTALabel2: TLabel
  237.           Left = 11
  238.           Top = 37
  239.           Width = 139
  240.           Height = 14
  241.           Caption = '72365.46@compuserve.com'
  242.           Font.Color = clBlack
  243.           Font.Height = -11
  244.           Font.Name = 'Arial'
  245.           Font.Style = []
  246.           ParentFont = False
  247.         end
  248.         object MainTALabel3: TLabel
  249.           Left = 23
  250.           Top = 56
  251.           Width = 114
  252.           Height = 14
  253.           Caption = 'Copyright ∩┐╜ 1995, 1996'
  254.           Font.Color = clBlack
  255.           Font.Height = -11
  256.           Font.Name = 'Arial'
  257.           Font.Style = []
  258.           ParentFont = False
  259.         end
  260.       end
  261.       object MainOptionsGroupBox: TGroupBox
  262.         Left = 432
  263.         Top = 34
  264.         Width = 161
  265.         Height = 260
  266.         Caption = 'Options'
  267.         Color = clBtnFace
  268.         Font.Color = clBlack
  269.         Font.Height = -11
  270.         Font.Name = 'Arial'
  271.         Font.Style = [fsBold]
  272.         ParentColor = False
  273.         ParentFont = False
  274.         ParentShowHint = False
  275.         ShowHint = True
  276.         TabOrder = 2
  277.         object IndicatorCheckBox: TCheckBox
  278.           Left = 16
  279.           Top = 38
  280.           Width = 97
  281.           Height = 18
  282.           Hint = 'Toggles dgIndicator'
  283.           Caption = 'dgIndicator'
  284.           ParentShowHint = False
  285.           ShowHint = True
  286.           State = cbChecked
  287.           TabOrder = 1
  288.           OnClick = IndicatorCheckBoClick
  289.         end
  290.         object RowLinesCheckBox: TCheckBox
  291.           Left = 16
  292.           Top = 60
  293.           Width = 97
  294.           Height = 18
  295.           Hint = 'Toggles dgRowLines'
  296.           Caption = 'dgRowLines'
  297.           ParentShowHint = False
  298.           ShowHint = True
  299.           State = cbChecked
  300.           TabOrder = 2
  301.           OnClick = RowLinesCheckBoxClick
  302.         end
  303.         object OnDrawBackgroundCheckBox: TCheckBox
  304.           Left = 16
  305.           Top = 170
  306.           Width = 137
  307.           Height = 18
  308.           Hint = 'Uses OnDrawBackground event'
  309.           Caption = 'OnDrawBackground'
  310.           ParentShowHint = False
  311.           ShowHint = True
  312.           TabOrder = 7
  313.           OnClick = OnDrawBackgroundCheckBoxClick
  314.         end
  315.         object MROColorCheckBox: TCheckBox
  316.           Left = 16
  317.           Top = 148
  318.           Width = 97
  319.           Height = 18
  320.           Hint = 
  321.             'Exposes white space (if any) and changes field color (if UseColo' +
  322.             'r)'
  323.           Caption = 'MRO Color'
  324.           ParentShowHint = False
  325.           ShowHint = True
  326.           TabOrder = 6
  327.           OnClick = MROColorCheckBoxClick
  328.         end
  329.         object TitlesCheckBox: TCheckBox
  330.           Left = 16
  331.           Top = 82
  332.           Width = 97
  333.           Height = 18
  334.           Hint = 'Toggles dgTitles'
  335.           Caption = 'dgTitles'
  336.           ParentShowHint = False
  337.           ShowHint = True
  338.           TabOrder = 3
  339.           OnClick = TitlesCheckBoxClick
  340.         end
  341.         object AutoHeightCheckBox: TCheckBox
  342.           Left = 16
  343.           Top = 104
  344.           Width = 97
  345.           Height = 18
  346.           Hint = 'Forces ClientHeight to be multiple of RecordPanel.Height'
  347.           Caption = 'AutoHeight'
  348.           ParentShowHint = False
  349.           ShowHint = True
  350.           State = cbChecked
  351.           TabOrder = 4
  352.           OnClick = AutoHeightCheckBoxClick
  353.         end
  354.         object AutoWidthCheckBox: TCheckBox
  355.           Left = 16
  356.           Top = 126
  357.           Width = 97
  358.           Height = 18
  359.           Hint = 'Eliminates white space along left edge'
  360.           Caption = 'AutoWidth'
  361.           ParentShowHint = False
  362.           ShowHint = True
  363.           State = cbChecked
  364.           TabOrder = 5
  365.           OnClick = AutoWidthCheckBoxClick
  366.         end
  367.         object UseColorCheckBox: TCheckBox
  368.           Left = 16
  369.           Top = 214
  370.           Width = 97
  371.           Height = 18
  372.           Hint = 'Controls field color of nonselected records'
  373.           Caption = 'UseColor'
  374.           ParentShowHint = False
  375.           ShowHint = True
  376.           TabOrder = 9
  377.           OnClick = UseColorCheckBoxClick
  378.         end
  379.         object UseFontCheckBox: TCheckBox
  380.           Left = 16
  381.           Top = 236
  382.           Width = 97
  383.           Height = 18
  384.           Hint = 'Controls the font used in fields in the nonselected records'
  385.           Caption = 'UseFont'
  386.           ParentShowHint = False
  387.           ShowHint = True
  388.           State = cbChecked
  389.           TabOrder = 10
  390.           OnClick = UseFontCheckBoxClick
  391.         end
  392.         object TabCheckBox: TCheckBox
  393.           Left = 16
  394.           Top = 192
  395.           Width = 113
  396.           Height = 18
  397.           Hint = 
  398.             'Tab from last field in current record to first field in next rec' +
  399.             'ord, & visa versa'
  400.           Caption = 'Tab to Next/Prior'
  401.           ParentShowHint = False
  402.           ShowHint = True
  403.           TabOrder = 8
  404.         end
  405.         object BorderStyleCheckBox: TCheckBox
  406.           Left = 16
  407.           Top = 16
  408.           Width = 97
  409.           Height = 18
  410.           Hint = 'Toggles BorderStyle'
  411.           Caption = 'bsSingle'
  412.           ParentShowHint = False
  413.           ShowHint = True
  414.           State = cbChecked
  415.           TabOrder = 0
  416.           OnClick = BorderStyleCheckBoxClick
  417.         end
  418.       end
  419.       object MainDBNavigator: TDBNavigator
  420.         Left = 432
  421.         Top = 8
  422.         Width = 172
  423.         Height = 18
  424.         DataSource = CustomerDataSource
  425.         VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast, nbInsert, nbDelete, nbEdit, nbPost, nbCancel]
  426.         ParentShowHint = False
  427.         ShowHint = True
  428.         TabOrder = 3
  429.       end
  430.       object MainRecordPanel: TPanel
  431.         Left = 20
  432.         Top = 9
  433.         Width = 382
  434.         Height = 92
  435.         Hint = 
  436.           'This is the selected record, it is defined in the RecordPanel pr' +
  437.           'operty'
  438.         BevelInner = bvLowered
  439.         Font.Color = clBlack
  440.         Font.Height = -11
  441.         Font.Name = 'Arial'
  442.         Font.Style = []
  443.         ParentFont = False
  444.         ParentShowHint = False
  445.         ShowHint = True
  446.         TabOrder = 4
  447.         OnClick = MainRecordPanelClick
  448.         object MainRecordBevel: TBevel
  449.           Left = 272
  450.           Top = 46
  451.           Width = 89
  452.           Height = 38
  453.           Shape = bsFrame
  454.         end
  455.         object MainRecordLabel: TLabel
  456.           Left = 286
  457.           Top = 49
  458.           Width = 59
  459.           Height = 14
  460.           Alignment = taCenter
  461.           Caption = 'Tax Rate'
  462.         end
  463.         object DBEdit1: TDBEdit
  464.           Left = 8
  465.           Top = 3
  466.           Width = 123
  467.           Height = 16
  468.           AutoSize = False
  469.           BorderStyle = bsNone
  470.           DataField = 'Company'
  471.           DataSource = CustomerDataSource
  472.           MaxLength = 30
  473.           TabOrder = 0
  474.           OnExit = DBEdit1Exit
  475.         end
  476.         object DBEdit2: TDBEdit
  477.           Left = 8
  478.           Top = 20
  479.           Width = 123
  480.           Height = 16
  481.           AutoSize = False
  482.           BorderStyle = bsNone
  483.           DataField = 'Addr1'
  484.           DataSource = CustomerDataSource
  485.           MaxLength = 30
  486.           TabOrder = 1
  487.         end
  488.         object DBEdit3: TDBEdit
  489.           Left = 8
  490.           Top = 37
  491.           Width = 123
  492.           Height = 16
  493.           AutoSize = False
  494.           BorderStyle = bsNone
  495.           DataField = 'Addr2'
  496.           DataSource = CustomerDataSource
  497.           MaxLength = 30
  498.           TabOrder = 2
  499.         end
  500.         object DBEdit8: TDBEdit
  501.           Left = 135
  502.           Top = 3
  503.           Width = 123
  504.           Height = 16
  505.           AutoSize = False
  506.           BorderStyle = bsNone
  507.           DataField = 'Phone'
  508.           DataSource = CustomerDataSource
  509.           MaxLength = 15
  510.           TabOrder = 7
  511.         end
  512.         object DBEdit9: TDBEdit
  513.           Left = 135
  514.           Top = 20
  515.           Width = 123
  516.           Height = 16
  517.           AutoSize = False
  518.           BorderStyle = bsNone
  519.           DataField = 'FAX'
  520.           DataSource = CustomerDataSource
  521.           MaxLength = 15
  522.           TabOrder = 8
  523.         end
  524.         object DBEdit10: TDBEdit
  525.           Left = 135
  526.           Top = 37
  527.           Width = 123
  528.           Height = 16
  529.           AutoSize = False
  530.           BorderStyle = bsNone
  531.           DataField = 'Contact'
  532.           DataSource = CustomerDataSource
  533.           MaxLength = 20
  534.           TabOrder = 9
  535.         end
  536.         object DBEdit4: TDBEdit
  537.           Left = 8
  538.           Top = 54
  539.           Width = 123
  540.           Height = 16
  541.           AutoSize = False
  542.           BorderStyle = bsNone
  543.           DataField = 'City'
  544.           DataSource = CustomerDataSource
  545.           MaxLength = 15
  546.           TabOrder = 3
  547.         end
  548.         object DBEdit11: TDBEdit
  549.           Left = 295
  550.           Top = 65
  551.           Width = 41
  552.           Height = 14
  553.           BorderStyle = bsNone
  554.           DataField = 'TaxRate'
  555.           DataSource = CustomerDataSource
  556.           MaxLength = 0
  557.           TabOrder = 10
  558.           OnExit = DBEdit11Exit
  559.         end
  560.         object DBEdit5: TDBEdit
  561.           Left = 8
  562.           Top = 71
  563.           Width = 61
  564.           Height = 16
  565.           AutoSize = False
  566.           BorderStyle = bsNone
  567.           DataField = 'State'
  568.           DataSource = CustomerDataSource
  569.           MaxLength = 20
  570.           TabOrder = 4
  571.         end
  572.         object DBEdit6: TDBEdit
  573.           Left = 71
  574.           Top = 71
  575.           Width = 60
  576.           Height = 16
  577.           AutoSize = False
  578.           BorderStyle = bsNone
  579.           DataField = 'Country'
  580.           DataSource = CustomerDataSource
  581.           MaxLength = 20
  582.           TabOrder = 5
  583.         end
  584.         object MainRecordGroupBox: TGroupBox
  585.           Left = 272
  586.           Top = 4
  587.           Width = 89
  588.           Height = 39
  589.           Caption = 'Customer #'
  590.           TabOrder = 11
  591.           object DBText1: TDBText
  592.             Left = 26
  593.             Top = 19
  594.             Width = 42
  595.             Height = 14
  596.             Alignment = taCenter
  597.             DataField = 'CustNo'
  598.             DataSource = CustomerDataSource
  599.           end
  600.         end
  601.         object DBEdit7: TDBEdit
  602.           Left = 135
  603.           Top = 71
  604.           Width = 60
  605.           Height = 16
  606.           AutoSize = False
  607.           BorderStyle = bsNone
  608.           DataField = 'Zip'
  609.           DataSource = CustomerDataSource
  610.           MaxLength = 10
  611.           TabOrder = 6
  612.         end
  613.       end
  614.       object MainTitlePanel: TPanel
  615.         Left = 12
  616.         Top = 33
  617.         Width = 382
  618.         Height = 92
  619.         Hint = 'Custom titles are displayed via the TitlePanel property'
  620.         BevelInner = bvLowered
  621.         Font.Color = clYellow
  622.         Font.Height = -11
  623.         Font.Name = 'Arial'
  624.         Font.Style = []
  625.         ParentFont = False
  626.         ParentShowHint = False
  627.         ShowHint = True
  628.         TabOrder = 5
  629.         Visible = False
  630.         object TitleLabel1: TLabel
  631.           Left = 8
  632.           Top = 6
  633.           Width = 123
  634.           Height = 14
  635.           Alignment = taCenter
  636.           Caption = 'Customer Name'
  637.           Color = clWhite
  638.           Font.Color = clNavy
  639.           Font.Height = -11
  640.           Font.Name = 'Arial'
  641.           Font.Style = [fsItalic]
  642.           ParentColor = False
  643.           ParentFont = False
  644.         end
  645.         object TitleLabel2: TLabel
  646.           Left = 8
  647.           Top = 22
  648.           Width = 123
  649.           Height = 14
  650.           Alignment = taCenter
  651.           Caption = 'Address 1'
  652.           Color = clWhite
  653.           Font.Color = clNavy
  654.           Font.Height = -11
  655.           Font.Name = 'Arial'
  656.           Font.Style = [fsItalic]
  657.           ParentColor = False
  658.           ParentFont = False
  659.         end
  660.         object TitleLabel3: TLabel
  661.           Left = 8
  662.           Top = 38
  663.           Width = 123
  664.           Height = 14
  665.           Alignment = taCenter
  666.           Caption = 'Address 2'
  667.           Color = clWhite
  668.           Font.Color = clNavy
  669.           Font.Height = -11
  670.           Font.Name = 'Arial'
  671.           Font.Style = [fsItalic]
  672.           ParentColor = False
  673.           ParentFont = False
  674.         end
  675.         object TitleLabel4: TLabel
  676.           Left = 8
  677.           Top = 54
  678.           Width = 123
  679.           Height = 14
  680.           Alignment = taCenter
  681.           Caption = 'City'
  682.           Color = clWhite
  683.           Font.Color = clNavy
  684.           Font.Height = -11
  685.           Font.Name = 'Arial'
  686.           Font.Style = [fsItalic]
  687.           ParentColor = False
  688.           ParentFont = False
  689.         end
  690.         object TitleLabel6: TLabel
  691.           Left = 70
  692.           Top = 70
  693.           Width = 61
  694.           Height = 14
  695.           Alignment = taCenter
  696.           Caption = 'Country'
  697.           Color = clWhite
  698.           Font.Color = clNavy
  699.           Font.Height = -11
  700.           Font.Name = 'Arial'
  701.           Font.Style = [fsItalic]
  702.           ParentColor = False
  703.           ParentFont = False
  704.         end
  705.         object TitleLabel5: TLabel
  706.           Left = 8
  707.           Top = 70
  708.           Width = 61
  709.           Height = 14
  710.           Alignment = taCenter
  711.           Caption = 'State'
  712.           Color = clWhite
  713.           Font.Color = clNavy
  714.           Font.Height = -11
  715.           Font.Name = 'Arial'
  716.           Font.Style = [fsItalic]
  717.           ParentColor = False
  718.           ParentFont = False
  719.         end
  720.         object TitleLabel7: TLabel
  721.           Left = 134
  722.           Top = 6
  723.           Width = 123
  724.           Height = 14
  725.           Alignment = taCenter
  726.           Caption = 'Phone'
  727.           Color = clWhite
  728.           Font.Color = clNavy
  729.           Font.Height = -11
  730.           Font.Name = 'Arial'
  731.           Font.Style = [fsItalic]
  732.           ParentColor = False
  733.           ParentFont = False
  734.         end
  735.         object TitleLabel8: TLabel
  736.           Left = 134
  737.           Top = 22
  738.           Width = 123
  739.           Height = 14
  740.           Alignment = taCenter
  741.           Caption = 'Fax'
  742.           Color = clWhite
  743.           Font.Color = clNavy
  744.           Font.Height = -11
  745.           Font.Name = 'Arial'
  746.           Font.Style = [fsItalic]
  747.           ParentColor = False
  748.           ParentFont = False
  749.         end
  750.         object TitleLabel9: TLabel
  751.           Left = 134
  752.           Top = 38
  753.           Width = 123
  754.           Height = 14
  755.           Alignment = taCenter
  756.           Caption = 'Contact'
  757.           Color = clWhite
  758.           Font.Color = clNavy
  759.           Font.Height = -11
  760.           Font.Name = 'Arial'
  761.           Font.Style = [fsItalic]
  762.           ParentColor = False
  763.           ParentFont = False
  764.         end
  765.         object TitleLabel11: TLabel
  766.           Left = 269
  767.           Top = 25
  768.           Width = 97
  769.           Height = 37
  770.           Caption = 'Titles!'
  771.           Font.Color = clMaroon
  772.           Font.Height = -32
  773.           Font.Name = 'Arial'
  774.           Font.Style = [fsBold]
  775.           ParentFont = False
  776.         end
  777.         object TitleLabel10: TLabel
  778.           Left = 134
  779.           Top = 70
  780.           Width = 61
  781.           Height = 14
  782.           Alignment = taCenter
  783.           Caption = 'Zip'
  784.           Color = clWhite
  785.           Font.Color = clNavy
  786.           Font.Height = -11
  787.           Font.Name = 'Arial'
  788.           Font.Style = [fsItalic]
  789.           ParentColor = False
  790.           ParentFont = False
  791.         end
  792.       end
  793.     end
  794.     object TPage
  795.       Left = 0
  796.       Top = 0
  797.       Caption = 'Box Demo'
  798.       object BoxMRO: TtaDBMRO
  799.         Left = 9
  800.         Top = 8
  801.         Width = 449
  802.         Height = 304
  803.         Cursor = crArrow
  804.         Color = clBtnFace
  805.         DataSource = OrdersDataSource
  806.         Options = [dgEditing, dgIndicator, dgConfirmDelete, dgCancelOnExit]
  807.         TabOrder = 0
  808.         TitleFont.Color = clWindowText
  809.         TitleFont.Height = -13
  810.         TitleFont.Name = 'System'
  811.         TitleFont.Style = []
  812.         RecordPanel = BoxRecordPanel
  813.         UseColor = False
  814.         UseFont = False
  815.       end
  816.       object xdAllGroupBox: TGroupBox
  817.         Left = 464
  818.         Top = 8
  819.         Width = 137
  820.         Height = 81
  821.         Caption = 'All Controls'
  822.         Font.Color = clBlack
  823.         Font.Height = -11
  824.         Font.Name = 'Arial'
  825.         Font.Style = [fsBold]
  826.         ParentFont = False
  827.         TabOrder = 1
  828.         object xdCtl3dCheckBox: TCheckBox
  829.           Left = 16
  830.           Top = 14
  831.           Width = 97
  832.           Height = 17
  833.           Caption = 'Ctl3D'
  834.           State = cbChecked
  835.           TabOrder = 0
  836.           OnClick = xdCtl3dCheckBoxClick
  837.         end
  838.         object xdFontBtn: TButton
  839.           Left = 75
  840.           Top = 51
  841.           Width = 48
  842.           Height = 24
  843.           Caption = 'Font'
  844.           TabOrder = 3
  845.           OnClick = xdFontBtnClick
  846.         end
  847.         object xdColorBtn: TButton
  848.           Left = 16
  849.           Top = 51
  850.           Width = 52
  851.           Height = 24
  852.           Caption = 'Color'
  853.           TabOrder = 2
  854.           OnClick = xdColorBtnClick
  855.         end
  856.         object xdEnabledCheckBox: TCheckBox
  857.           Left = 16
  858.           Top = 30
  859.           Width = 97
  860.           Height = 17
  861.           Caption = 'Enabled'
  862.           State = cbChecked
  863.           TabOrder = 1
  864.           OnClick = xdEnabledCheckBoxClick
  865.         end
  866.       end
  867.       object xdEditGroupBox: TGroupBox
  868.         Left = 74
  869.         Top = 328
  870.         Width = 137
  871.         Height = 57
  872.         Caption = 'TDBEdit/TDBListBox'
  873.         Font.Color = clBlack
  874.         Font.Height = -11
  875.         Font.Name = 'Arial'
  876.         Font.Style = [fsBold]
  877.         ParentFont = False
  878.         TabOrder = 3
  879.         object xdLookupListLabel: TLabel
  880.           Left = 8
  881.           Top = 11
  882.           Width = 84
  883.           Height = 14
  884.           Caption = 'TDBLookupList'
  885.         end
  886.         object xdEditBorderStyleComboBox: TComboBox
  887.           Left = 8
  888.           Top = 28
  889.           Width = 121
  890.           Height = 22
  891.           Color = clBtnFace
  892.           ItemHeight = 14
  893.           Items.Strings = (
  894.             'bsNone'
  895.             'bsSingle')
  896.           TabOrder = 0
  897.           Text = 'bsSingle'
  898.           OnChange = xdEditBorderStyleComboBoxChange
  899.         end
  900.       end
  901.       object xdPanelGroupBox: TGroupBox
  902.         Left = 464
  903.         Top = 96
  904.         Width = 137
  905.         Height = 201
  906.         Caption = 'TPanel'
  907.         Font.Color = clBlack
  908.         Font.Height = -11
  909.         Font.Name = 'Arial'
  910.         Font.Style = [fsBold]
  911.         ParentFont = False
  912.         TabOrder = 2
  913.         object xdPanelLabel: TLabel
  914.           Left = 8
  915.           Top = 41
  916.           Width = 59
  917.           Height = 14
  918.           Caption = 'BevelInner'
  919.           Font.Color = clBlack
  920.           Font.Height = -11
  921.           Font.Name = 'Arial'
  922.           Font.Style = [fsBold]
  923.           ParentFont = False
  924.         end
  925.         object xdPanelLabel2: TLabel
  926.           Left = 8
  927.           Top = 81
  928.           Width = 61
  929.           Height = 14
  930.           Caption = 'BevelOuter'
  931.           Font.Color = clBlack
  932.           Font.Height = -11
  933.           Font.Name = 'Arial'
  934.           Font.Style = [fsBold]
  935.           ParentFont = False
  936.         end
  937.         object xdPanelLabel3: TLabel
  938.           Left = 8
  939.           Top = 121
  940.           Width = 61
  941.           Height = 14
  942.           Caption = 'BevelWidth'
  943.           Font.Color = clBlack
  944.           Font.Height = -11
  945.           Font.Name = 'Arial'
  946.           Font.Style = [fsBold]
  947.           ParentFont = False
  948.         end
  949.         object xdPanelLabel4: TLabel
  950.           Left = 8
  951.           Top = 157
  952.           Width = 69
  953.           Height = 14
  954.           Caption = 'BorderWidth'
  955.           Font.Color = clBlack
  956.           Font.Height = -11
  957.           Font.Name = 'Arial'
  958.           Font.Style = [fsBold]
  959.           ParentFont = False
  960.         end
  961.         object xdPanelComboBox: TComboBox
  962.           Left = 8
  963.           Top = 18
  964.           Width = 121
  965.           Height = 22
  966.           Color = clBtnFace
  967.           ItemHeight = 14
  968.           Items.Strings = (
  969.             'bsNone'
  970.             'bsSingle')
  971.           TabOrder = 0
  972.           Text = 'bsSingle'
  973.           OnChange = xdPanelComboBoxChange
  974.         end
  975.         object xdBevelInnerComboBox: TComboBox
  976.           Left = 8
  977.           Top = 56
  978.           Width = 121
  979.           Height = 22
  980.           Color = clBtnFace
  981.           ItemHeight = 14
  982.           Items.Strings = (
  983.             'bvNone'
  984.             'bvLowered'
  985.             'bvRaised')
  986.           TabOrder = 1
  987.           Text = 'bvNone'
  988.           OnChange = xdBevelInnerComboBoxChange
  989.         end
  990.         object xdBevelOuterComboBox: TComboBox
  991.           Left = 8
  992.           Top = 98
  993.           Width = 121
  994.           Height = 22
  995.           Color = clBtnFace
  996.           ItemHeight = 14
  997.           Items.Strings = (
  998.             'bvNone'
  999.             'bvLowered'
  1000.             'bvRaised')
  1001.           TabOrder = 2
  1002.           Text = 'bvRaised'
  1003.           OnChange = xdBevelOuterComboBoxChange
  1004.         end
  1005.         object xdPanelScrollBar1: TScrollBar
  1006.           Left = 8
  1007.           Top = 138
  1008.           Width = 121
  1009.           Height = 14
  1010.           Max = 5
  1011.           Position = 1
  1012.           TabOrder = 3
  1013.           OnChange = xdPanelScrollBar1Change
  1014.         end
  1015.         object xdPanelScrollBar2: TScrollBar
  1016.           Left = 8
  1017.           Top = 174
  1018.           Width = 121
  1019.           Height = 14
  1020.           Max = 5
  1021.           TabOrder = 4
  1022.           OnChange = xdPanelScrollBar2Change
  1023.         end
  1024.       end
  1025.       object xdLabelGroupBox: TGroupBox
  1026.         Left = 464
  1027.         Top = 304
  1028.         Width = 137
  1029.         Height = 81
  1030.         Caption = 'TLabel'
  1031.         Font.Color = clBlack
  1032.         Font.Height = -11
  1033.         Font.Name = 'Arial'
  1034.         Font.Style = [fsBold]
  1035.         ParentFont = False
  1036.         TabOrder = 5
  1037.         object xdLabelJustifyComboBox: TComboBox
  1038.           Left = 8
  1039.           Top = 51
  1040.           Width = 121
  1041.           Height = 22
  1042.           Color = clBtnFace
  1043.           ItemHeight = 14
  1044.           Items.Strings = (
  1045.             'taLeftJustify'
  1046.             'taRightJustify'
  1047.             'taCenter')
  1048.           TabOrder = 2
  1049.           Text = 'taLeftJustify'
  1050.           OnChange = xdLabelJustifyComboBoxChange
  1051.         end
  1052.         object xdLabelTransparentCheckBox: TCheckBox
  1053.           Left = 8
  1054.           Top = 31
  1055.           Width = 97
  1056.           Height = 17
  1057.           Caption = 'Transparent'
  1058.           State = cbChecked
  1059.           TabOrder = 1
  1060.           OnClick = xdLabelTransparentCheckBoxClick
  1061.         end
  1062.         object xdLabelAccelCharCheckBox2: TCheckBox
  1063.           Left = 8
  1064.           Top = 14
  1065.           Width = 113
  1066.           Height = 17
  1067.           Caption = 'ShowAccelChar'
  1068.           State = cbChecked
  1069.           TabOrder = 0
  1070.           OnClick = xdLabelAccelCharCheckBox2Click
  1071.         end
  1072.       end
  1073.       object xdCheckBoxGroupBox: TGroupBox
  1074.         Left = 258
  1075.         Top = 328
  1076.         Width = 137
  1077.         Height = 57
  1078.         Caption = 'TDBEdit/TDBCheckBox'
  1079.         Font.Color = clBlack
  1080.         Font.Height = -11
  1081.         Font.Name = 'Arial'
  1082.         Font.Style = [fsBold]
  1083.         ParentFont = False
  1084.         TabOrder = 4
  1085.         object xdCheckBoxJustifyComboBox1: TComboBox
  1086.           Left = 8
  1087.           Top = 28
  1088.           Width = 121
  1089.           Height = 22
  1090.           Color = clBtnFace
  1091.           ItemHeight = 14
  1092.           Items.Strings = (
  1093.             'taLeftJustify'
  1094.             'taRightJustify')
  1095.           TabOrder = 0
  1096.           Text = 'taRightJustify'
  1097.           OnChange = xdCheckBoxJustifyComboBox1Change
  1098.         end
  1099.       end
  1100.       object BoxRecordPanel: TPanel
  1101.         Left = 21
  1102.         Top = 9
  1103.         Width = 420
  1104.         Height = 151
  1105.         BevelInner = bvRaised
  1106.         BorderStyle = bsSingle
  1107.         Font.Color = clBlack
  1108.         Font.Height = -12
  1109.         Font.Name = 'Arial'
  1110.         Font.Style = [fsBold]
  1111.         ParentFont = False
  1112.         ParentShowHint = False
  1113.         ShowHint = True
  1114.         TabOrder = 6
  1115.         OnClick = BoxRecordPanelClick
  1116.         object OrderNoLabel: TLabel
  1117.           Left = 8
  1118.           Top = 24
  1119.           Width = 54
  1120.           Height = 17
  1121.           Caption = '&Order No'
  1122.           Color = clAqua
  1123.           FocusControl = OrderNoDBEdit
  1124.           ParentColor = False
  1125.           Transparent = True
  1126.         end
  1127.         object CompanyLabel: TLabel
  1128.           Left = 8
  1129.           Top = 56
  1130.           Width = 54
  1131.           Height = 15
  1132.           Caption = '&Company'
  1133.           Color = clFuchsia
  1134.           FocusControl = DBLookupCombo1
  1135.           ParentColor = False
  1136.           Transparent = True
  1137.         end
  1138.         object TermsLabel: TLabel
  1139.           Left = 8
  1140.           Top = 88
  1141.           Width = 54
  1142.           Height = 15
  1143.           Caption = '&Terms'
  1144.           Color = clYellow
  1145.           FocusControl = DBComboBox1
  1146.           ParentColor = False
  1147.           Transparent = True
  1148.         end
  1149.         object PaymentLabel: TLabel
  1150.           Left = 272
  1151.           Top = 8
  1152.           Width = 55
  1153.           Height = 15
  1154.           Caption = '&Payment'
  1155.           Color = clLime
  1156.           FocusControl = DBListBox1
  1157.           ParentColor = False
  1158.           Transparent = True
  1159.         end
  1160.         object EmployeeLabel: TLabel
  1161.           Left = 179
  1162.           Top = 8
  1163.           Width = 86
  1164.           Height = 15
  1165.           Caption = '&Employee'
  1166.           Color = clWhite
  1167.           ParentColor = False
  1168.           Transparent = True
  1169.         end
  1170.         object OrderNoDBEdit: TDBEdit
  1171.           Left = 64
  1172.           Top = 16
  1173.           Width = 65
  1174.           Height = 23
  1175.           Hint = 'TDBEdit'
  1176.           DataField = 'OrderNo'
  1177.           DataSource = OrdersDataSource
  1178.           MaxLength = 0
  1179.           TabOrder = 0
  1180.         end
  1181.         object DBListBox1: TDBListBox
  1182.           Left = 272
  1183.           Top = 32
  1184.           Width = 49
  1185.           Height = 104
  1186.           Hint = 'TDBListBox'
  1187.           DataField = 'PaymentMethod'
  1188.           DataSource = OrdersDataSource
  1189.           ItemHeight = 15
  1190.           Items.Strings = (
  1191.             'AmEx'
  1192.             'Check'
  1193.             'COD'
  1194.             'Credit'
  1195.             'MC'
  1196.             'Visa')
  1197.           TabOrder = 5
  1198.         end
  1199.         object DBRadioGroup1: TDBRadioGroup
  1200.           Left = 328
  1201.           Top = 8
  1202.           Width = 73
  1203.           Height = 128
  1204.           Hint = 'TDBRadioGroup'
  1205.           Caption = '&Ship Via'
  1206.           DataField = 'ShipVIA'
  1207.           DataSource = OrdersDataSource
  1208.           Items.Strings = (
  1209.             'DHL'
  1210.             'Emery'
  1211.             'FedEx'
  1212.             'UPS'
  1213.             'US Mail')
  1214.           TabOrder = 6
  1215.         end
  1216.         object DBLookupCombo1: TDBLookupCombo
  1217.           Left = 64
  1218.           Top = 48
  1219.           Width = 105
  1220.           Height = 25
  1221.           Hint = 'TDBLookupCombo'
  1222.           DataField = 'CustNo'
  1223.           DataSource = OrdersDataSource
  1224.           LookupSource = CustomerDataSource
  1225.           LookupDisplay = 'Company'
  1226.           LookupField = 'CustNo'
  1227.           TabOrder = 1
  1228.         end
  1229.         object DBComboBox1: TDBComboBox
  1230.           Left = 64
  1231.           Top = 80
  1232.           Width = 81
  1233.           Height = 23
  1234.           Hint = 'TDBComboBox'
  1235.           DataField = 'Terms'
  1236.           DataSource = OrdersDataSource
  1237.           ItemHeight = 15
  1238.           Items.Strings = (
  1239.             'FOB'
  1240.             'Net 30')
  1241.           TabOrder = 2
  1242.         end
  1243.         object DBCheckBox1: TDBCheckBox
  1244.           Left = 8
  1245.           Top = 112
  1246.           Width = 153
  1247.           Height = 17
  1248.           Hint = 'TDBCheckBox'
  1249.           Caption = 'Ship to Maria Eventosh'
  1250.           DataField = 'ShipToContact'
  1251.           DataSource = OrdersDataSource
  1252.           TabOrder = 3
  1253.           ValueChecked = 'Maria Eventosh'
  1254.           ValueUnchecked = 'False'
  1255.         end
  1256.         object DBLookupList1: TDBLookupList
  1257.           Left = 179
  1258.           Top = 32
  1259.           Width = 86
  1260.           Height = 104
  1261.           Hint = 'TDBLookupList'
  1262.           DataField = 'EmpNo'
  1263.           DataSource = OrdersDataSource
  1264.           LookupSource = EmployeeDataSource
  1265.           LookupDisplay = 'LastName'
  1266.           LookupField = 'EmpNo'
  1267.           TabOrder = 4
  1268.         end
  1269.       end
  1270.     end
  1271.     object TPage
  1272.       Left = 0
  1273.       Top = 0
  1274.       Caption = 'Blob Demo'
  1275.       object BlobMRO: TtaDBMRO
  1276.         Left = 18
  1277.         Top = 16
  1278.         Width = 409
  1279.         Height = 374
  1280.         Color = clBtnFace
  1281.         DataSource = BioLifeDataSource
  1282.         Options = [dgEditing, dgIndicator, dgRowLines, dgConfirmDelete, dgCancelOnExit]
  1283.         TabOrder = 0
  1284.         TitleFont.Color = clWindowText
  1285.         TitleFont.Height = -13
  1286.         TitleFont.Name = 'System'
  1287.         TitleFont.Style = []
  1288.         RecordPanel = BlobRecordPanel
  1289.         UseColor = False
  1290.         UseFont = False
  1291.       end
  1292.       object bdImageGroupBox: TGroupBox
  1293.         Left = 440
  1294.         Top = 328
  1295.         Width = 145
  1296.         Height = 57
  1297.         Caption = 'TDBImage'
  1298.         Font.Color = clBlack
  1299.         Font.Height = -11
  1300.         Font.Name = 'Arial'
  1301.         Font.Style = [fsBold]
  1302.         ParentFont = False
  1303.         TabOrder = 4
  1304.         object bdImageAutoDisplayCheckBox: TCheckBox
  1305.           Left = 16
  1306.           Top = 17
  1307.           Width = 97
  1308.           Height = 14
  1309.           Caption = 'AutoDisplay'
  1310.           State = cbChecked
  1311.           TabOrder = 0
  1312.           OnClick = bdImageAutoDisplayCheckBoxClick
  1313.         end
  1314.         object bdImageStretchCheckBox: TCheckBox
  1315.           Left = 16
  1316.           Top = 35
  1317.           Width = 97
  1318.           Height = 14
  1319.           Caption = 'Stretch'
  1320.           State = cbChecked
  1321.           TabOrder = 1
  1322.           OnClick = bdImageStretchCheckBoxClick
  1323.         end
  1324.       end
  1325.       object bdMemoGroupBox: TGroupBox
  1326.         Left = 440
  1327.         Top = 208
  1328.         Width = 145
  1329.         Height = 113
  1330.         Caption = 'TDBMemo'
  1331.         Font.Color = clBlack
  1332.         Font.Height = -11
  1333.         Font.Name = 'Arial'
  1334.         Font.Style = [fsBold]
  1335.         ParentFont = False
  1336.         TabOrder = 3
  1337.         object bdMemoAutoDisplayCheckBox: TCheckBox
  1338.           Left = 16
  1339.           Top = 14
  1340.           Width = 97
  1341.           Height = 14
  1342.           Caption = 'AutoDisplay'
  1343.           State = cbChecked
  1344.           TabOrder = 0
  1345.           OnClick = bdMemoAutoDisplayCheckBoxClick
  1346.         end
  1347.         object bdMemoAlignComboBox: TComboBox
  1348.           Left = 16
  1349.           Top = 80
  1350.           Width = 121
  1351.           Height = 22
  1352.           Color = clBtnFace
  1353.           ItemHeight = 14
  1354.           Items.Strings = (
  1355.             'taLeftJustify'
  1356.             'taRightJustify'
  1357.             'taCenter')
  1358.           TabOrder = 2
  1359.           Text = 'taLeftJustify'
  1360.           OnChange = bdMemoAlignComboBoxChange
  1361.         end
  1362.         object bdMemoScrollBarComboBox: TComboBox
  1363.           Left = 16
  1364.           Top = 52
  1365.           Width = 121
  1366.           Height = 22
  1367.           Color = clBtnFace
  1368.           ItemHeight = 14
  1369.           Items.Strings = (
  1370.             'ssNone'
  1371.             'ssHorizontal'
  1372.             'ssVertical'
  1373.             'ssBoth')
  1374.           TabOrder = 1
  1375.           Text = 'ssNone'
  1376.           OnChange = bdMemoScrollBarComboBoxChange
  1377.         end
  1378.         object bdMemoWordWrapCheckBox: TCheckBox
  1379.           Left = 16
  1380.           Top = 30
  1381.           Width = 97
  1382.           Height = 14
  1383.           Caption = 'WordWrap'
  1384.           State = cbChecked
  1385.           TabOrder = 3
  1386.           OnClick = bdMemoWordWrapCheckBoxClick
  1387.         end
  1388.       end
  1389.       object bdAllGroupBox: TGroupBox
  1390.         Left = 440
  1391.         Top = 16
  1392.         Width = 145
  1393.         Height = 85
  1394.         Caption = 'All Controls'
  1395.         Font.Color = clBlack
  1396.         Font.Height = -11
  1397.         Font.Name = 'Arial'
  1398.         Font.Style = [fsBold]
  1399.         ParentFont = False
  1400.         TabOrder = 1
  1401.         object bdCtl3DCheckBox: TCheckBox
  1402.           Left = 16
  1403.           Top = 14
  1404.           Width = 97
  1405.           Height = 14
  1406.           Caption = 'Ctl3D'
  1407.           State = cbChecked
  1408.           TabOrder = 0
  1409.           OnClick = bdCtl3DCheckBoxClick
  1410.         end
  1411.         object bdFontBtn: TButton
  1412.           Left = 80
  1413.           Top = 55
  1414.           Width = 56
  1415.           Height = 24
  1416.           Caption = 'Font'
  1417.           TabOrder = 3
  1418.           OnClick = bdFontBtnClick
  1419.         end
  1420.         object bdColorBtn: TButton
  1421.           Left = 16
  1422.           Top = 55
  1423.           Width = 56
  1424.           Height = 24
  1425.           Caption = 'Color'
  1426.           TabOrder = 2
  1427.           OnClick = bdColorBtnClick
  1428.         end
  1429.         object bdBorderStyleComboBox: TComboBox
  1430.           Left = 16
  1431.           Top = 30
  1432.           Width = 121
  1433.           Height = 22
  1434.           Color = clBtnFace
  1435.           ItemHeight = 14
  1436.           Items.Strings = (
  1437.             'bsNone'
  1438.             'bsSingle')
  1439.           TabOrder = 1
  1440.           Text = 'bsSingle'
  1441.           OnChange = bdBorderStyleComboBoxChange
  1442.         end
  1443.       end
  1444.       object bdEditGroupBox: TGroupBox
  1445.         Left = 440
  1446.         Top = 104
  1447.         Width = 145
  1448.         Height = 49
  1449.         Caption = 'TDBEdit/TDBText'
  1450.         Font.Color = clBlack
  1451.         Font.Height = -11
  1452.         Font.Name = 'Arial'
  1453.         Font.Style = [fsBold]
  1454.         ParentFont = False
  1455.         TabOrder = 2
  1456.         object bdEditAlignComboBox: TComboBox
  1457.           Left = 16
  1458.           Top = 19
  1459.           Width = 121
  1460.           Height = 22
  1461.           Color = clBtnFace
  1462.           ItemHeight = 14
  1463.           Items.Strings = (
  1464.             'taLeftJustify'
  1465.             'taRightJustify'
  1466.             'taCenter')
  1467.           TabOrder = 0
  1468.           Text = 'taLeftJustify'
  1469.           OnChange = bdEditAlignComboBoxChange
  1470.         end
  1471.       end
  1472.       object bdTextGroupBox: TGroupBox
  1473.         Left = 440
  1474.         Top = 160
  1475.         Width = 145
  1476.         Height = 41
  1477.         Caption = 'TDBText'
  1478.         Font.Color = clBlack
  1479.         Font.Height = -11
  1480.         Font.Name = 'Arial'
  1481.         Font.Style = [fsBold]
  1482.         ParentFont = False
  1483.         TabOrder = 5
  1484.         object bdTextTransparentCheckBox: TCheckBox
  1485.           Left = 16
  1486.           Top = 19
  1487.           Width = 97
  1488.           Height = 14
  1489.           Caption = 'Transparent'
  1490.           State = cbChecked
  1491.           TabOrder = 0
  1492.           OnClick = bdTextTransparentCheckBoxClick
  1493.         end
  1494.       end
  1495.       object BlobRecordPanel: TPanel
  1496.         Left = 30
  1497.         Top = 17
  1498.         Width = 380
  1499.         Height = 185
  1500.         ParentShowHint = False
  1501.         ShowHint = True
  1502.         TabOrder = 6
  1503.         OnClick = BlobRecordPanelClick
  1504.         object CommonNameDBText: TDBText
  1505.           Left = 192
  1506.           Top = 8
  1507.           Width = 105
  1508.           Height = 33
  1509.           Hint = 'TDBText'
  1510.           Color = clAqua
  1511.           DataField = 'Common_Name'
  1512.           DataSource = BioLifeDataSource
  1513.           ParentColor = False
  1514.           Transparent = True
  1515.         end
  1516.         object DBImage1: TDBImage
  1517.           Left = 191
  1518.           Top = 40
  1519.           Width = 169
  1520.           Height = 137
  1521.           Hint = 'TDBImage'
  1522.           DataField = 'Graphic'
  1523.           DataSource = BioLifeDataSource
  1524.           Stretch = True
  1525.           TabOrder = 2
  1526.         end
  1527.         object DBMemo1: TDBMemo
  1528.           Left = 11
  1529.           Top = 40
  1530.           Width = 169
  1531.           Height = 137
  1532.           Hint = 'TDBMemo'
  1533.           DataField = 'Notes'
  1534.           DataSource = BioLifeDataSource
  1535.           TabOrder = 1
  1536.         end
  1537.         object SpeciesDBEdit: TDBEdit
  1538.           Left = 11
  1539.           Top = 8
  1540.           Width = 169
  1541.           Height = 24
  1542.           Hint = 'TDBEdit'
  1543.           DataField = 'Species Name'
  1544.           DataSource = BioLifeDataSource
  1545.           MaxLength = 40
  1546.           TabOrder = 0
  1547.         end
  1548.       end
  1549.     end
  1550.     object TPage
  1551.       Left = 0
  1552.       Top = 0
  1553.       Caption = '3d Party'
  1554.       object ThirdMRO: TtaDBMRO
  1555.         Left = 8
  1556.         Top = 16
  1557.         Width = 553
  1558.         Height = 292
  1559.         Cursor = crArrow
  1560.         Color = clBtnFace
  1561.         DataSource = OrdersDataSource
  1562.         Options = [dgEditing, dgIndicator, dgConfirmDelete, dgCancelOnExit]
  1563.         TabOrder = 0
  1564.         TitleFont.Color = clWindowText
  1565.         TitleFont.Height = -13
  1566.         TitleFont.Name = 'System'
  1567.         TitleFont.Style = []
  1568.         Flags = [mroAutoCursor, mroMouseClick]
  1569.         RecordPanel = ThirdPanel
  1570.         UseColor = False
  1571.         UseFont = False
  1572.       end
  1573.       object tpAllControlsGroupBox: TGroupBox
  1574.         Left = 8
  1575.         Top = 336
  1576.         Width = 361
  1577.         Height = 49
  1578.         Caption = 'All Controls'
  1579.         Font.Color = clBlack
  1580.         Font.Height = -11
  1581.         Font.Name = 'Arial'
  1582.         Font.Style = [fsBold]
  1583.         ParentFont = False
  1584.         TabOrder = 1
  1585.         object tpCtl3DCheckBox: TCheckBox
  1586.           Left = 9
  1587.           Top = 21
  1588.           Width = 51
  1589.           Height = 17
  1590.           Caption = 'Ctl3D'
  1591.           State = cbChecked
  1592.           TabOrder = 0
  1593.           OnClick = tpCtl3DCheckBoxClick
  1594.         end
  1595.         object tpEnabledCheckBox: TCheckBox
  1596.           Left = 66
  1597.           Top = 21
  1598.           Width = 65
  1599.           Height = 17
  1600.           Caption = 'Enabled'
  1601.           State = cbChecked
  1602.           TabOrder = 1
  1603.           OnClick = tpEnabledCheckBoxClick
  1604.         end
  1605.         object tpBorderStyleComboBox: TComboBox
  1606.           Left = 139
  1607.           Top = 19
  1608.           Width = 86
  1609.           Height = 22
  1610.           Color = clBtnFace
  1611.           ItemHeight = 14
  1612.           Items.Strings = (
  1613.             'bsNone'
  1614.             'bsSingle')
  1615.           TabOrder = 2
  1616.           Text = 'bsSingle'
  1617.           OnChange = tpBorderStyleComboBoxChange
  1618.         end
  1619.         object tpColorBtn: TButton
  1620.           Left = 235
  1621.           Top = 17
  1622.           Width = 56
  1623.           Height = 24
  1624.           Caption = 'Color'
  1625.           TabOrder = 3
  1626.           OnClick = tpColorBtnClick
  1627.         end
  1628.         object tpFontBtn: TButton
  1629.           Left = 300
  1630.           Top = 17
  1631.           Width = 56
  1632.           Height = 24
  1633.           Caption = 'Font'
  1634.           TabOrder = 4
  1635.           OnClick = tpFontBtnClick
  1636.         end
  1637.       end
  1638.       object tpCombosGroupBox: TGroupBox
  1639.         Left = 384
  1640.         Top = 336
  1641.         Width = 169
  1642.         Height = 49
  1643.         Caption = 'InfoPower/Out && About'
  1644.         Font.Color = clBlack
  1645.         Font.Height = -11
  1646.         Font.Name = 'Arial'
  1647.         Font.Style = [fsBold]
  1648.         ParentFont = False
  1649.         TabOrder = 3
  1650.         object tpHideButtonCheckBox: TCheckBox
  1651.           Left = 8
  1652.           Top = 21
  1653.           Width = 153
  1654.           Height = 17
  1655.           Caption = 'Hide Drop Down Buttons'
  1656.           TabOrder = 0
  1657.           OnClick = tpHideButtonCheckBoxClick
  1658.         end
  1659.       end
  1660.       object ThirdPanel: TPanel
  1661.         Left = 20
  1662.         Top = 17
  1663.         Width = 524
  1664.         Height = 145
  1665.         ParentShowHint = False
  1666.         ShowHint = True
  1667.         TabOrder = 2
  1668.         object InfoPowerGroupBox: TGroupBox
  1669.           Left = 8
  1670.           Top = 8
  1671.           Width = 161
  1672.           Height = 129
  1673.           Caption = 'InfoPower'
  1674.           TabOrder = 0
  1675.           object wwLabel1: TLabel
  1676.             Left = 8
  1677.             Top = 16
  1678.             Width = 108
  1679.             Height = 14
  1680.             Caption = 'TwwDBLookupCombo'
  1681.             Font.Color = clBlack
  1682.             Font.Height = -11
  1683.             Font.Name = 'Arial'
  1684.             Font.Style = []
  1685.             ParentFont = False
  1686.           end
  1687.           object wwLabel2: TLabel
  1688.             Left = 8
  1689.             Top = 64
  1690.             Width = 92
  1691.             Height = 14
  1692.             Caption = 'TwwDBComboBox'
  1693.             Font.Color = clBlack
  1694.             Font.Height = -11
  1695.             Font.Name = 'Arial'
  1696.             Font.Style = []
  1697.             ParentFont = False
  1698.           end
  1699.         end
  1700.         object OrpheusGroupBox: TGroupBox
  1701.           Left = 176
  1702.           Top = 8
  1703.           Width = 161
  1704.           Height = 129
  1705.           Caption = 'Orpheus'
  1706.           TabOrder = 1
  1707.           object OvcLabel1: TLabel
  1708.             Left = 8
  1709.             Top = 13
  1710.             Width = 87
  1711.             Height = 14
  1712.             Caption = 'OvcDBSimpleField'
  1713.             Font.Color = clBlack
  1714.             Font.Height = -11
  1715.             Font.Name = 'Arial'
  1716.             Font.Style = []
  1717.             ParentFont = False
  1718.           end
  1719.           object OvcLabel2: TLabel
  1720.             Left = 8
  1721.             Top = 49
  1722.             Width = 89
  1723.             Height = 14
  1724.             Caption = 'OvcDBPictureField'
  1725.             Font.Color = clBlack
  1726.             Font.Height = -11
  1727.             Font.Name = 'Arial'
  1728.             Font.Style = []
  1729.             ParentFont = False
  1730.           end
  1731.           object OvcLabel3: TLabel
  1732.             Left = 8
  1733.             Top = 87
  1734.             Width = 95
  1735.             Height = 14
  1736.             Caption = 'OvcDBNumericField'
  1737.             Font.Color = clBlack
  1738.             Font.Height = -11
  1739.             Font.Name = 'Arial'
  1740.             Font.Style = []
  1741.             ParentFont = False
  1742.           end
  1743.         end
  1744.         object OutAboutGroupBox: TGroupBox
  1745.           Left = 344
  1746.           Top = 8
  1747.           Width = 161
  1748.           Height = 129
  1749.           Caption = 'Out && About'
  1750.           TabOrder = 2
  1751.           object PlusLabel1: TLabel
  1752.             Left = 8
  1753.             Top = 16
  1754.             Width = 108
  1755.             Height = 14
  1756.             Caption = 'TDBLookupComboPlus'
  1757.             Font.Color = clBlack
  1758.             Font.Height = -11
  1759.             Font.Name = 'Arial'
  1760.             Font.Style = []
  1761.             ParentFont = False
  1762.           end
  1763.           object PlusLabel2: TLabel
  1764.             Left = 8
  1765.             Top = 64
  1766.             Width = 92
  1767.             Height = 14
  1768.             Caption = 'TDBComboBoxPlus'
  1769.             Font.Color = clBlack
  1770.             Font.Height = -11
  1771.             Font.Name = 'Arial'
  1772.             Font.Style = []
  1773.             ParentFont = False
  1774.           end
  1775.         end
  1776.       end
  1777.     end
  1778.   end
  1779.   object CustomerDataSource: TDataSource
  1780.     DataSet = CustomerTable
  1781.     Left = 576
  1782.     Top = 8
  1783.   end
  1784.   object CustomerTable: TTable
  1785.     Active = True
  1786.     DatabaseName = 'DBDEMOS'
  1787.     IndexFieldNames = 'CustNo'
  1788.     TableName = 'CUSTOMER.DB'
  1789.     Left = 576
  1790.     Top = 40
  1791.     object CustomerTableCompany: TStringField
  1792.       DisplayWidth = 54
  1793.       FieldName = 'Company'
  1794.       Size = 30
  1795.     end
  1796.     object CustomerTableCustNo: TFloatField
  1797.       DisplayWidth = 53
  1798.       FieldName = 'CustNo'
  1799.       Visible = False
  1800.     end
  1801.     object CustomerTableAddr1: TStringField
  1802.       FieldName = 'Addr1'
  1803.       Visible = False
  1804.       Size = 30
  1805.     end
  1806.     object CustomerTableAddr2: TStringField
  1807.       FieldName = 'Addr2'
  1808.       Visible = False
  1809.       Size = 30
  1810.     end
  1811.     object CustomerTableCity: TStringField
  1812.       FieldName = 'City'
  1813.       Visible = False
  1814.       Size = 15
  1815.     end
  1816.     object CustomerTableState: TStringField
  1817.       FieldName = 'State'
  1818.       Visible = False
  1819.     end
  1820.     object CustomerTableZip: TStringField
  1821.       FieldName = 'Zip'
  1822.       Visible = False
  1823.       Size = 10
  1824.     end
  1825.     object CustomerTableCountry: TStringField
  1826.       FieldName = 'Country'
  1827.       Visible = False
  1828.     end
  1829.     object CustomerTablePhone: TStringField
  1830.       FieldName = 'Phone'
  1831.       Visible = False
  1832.       Size = 15
  1833.     end
  1834.     object CustomerTableFAX: TStringField
  1835.       FieldName = 'FAX'
  1836.       Visible = False
  1837.       Size = 15
  1838.     end
  1839.     object CustomerTableTaxRate: TFloatField
  1840.       FieldName = 'TaxRate'
  1841.       Visible = False
  1842.     end
  1843.     object CustomerTableContact: TStringField
  1844.       FieldName = 'Contact'
  1845.       Visible = False
  1846.     end
  1847.     object CustomerTableLastInvoiceDate: TDateTimeField
  1848.       FieldName = 'LastInvoiceDate'
  1849.       Visible = False
  1850.     end
  1851.   end
  1852.   object BioLifeDataSource: TDataSource
  1853.     DataSet = BioLifeTable
  1854.     Left = 576
  1855.     Top = 136
  1856.   end
  1857.   object BioLifeTable: TTable
  1858.     Active = True
  1859.     AfterInsert = BioLifeTableAfterInsert
  1860.     BeforePost = BioLifeTableBeforePost
  1861.     DatabaseName = 'DBDEMOS'
  1862.     ReadOnly = True
  1863.     TableName = 'BIOLIFE.DB'
  1864.     Left = 576
  1865.     Top = 168
  1866.     object BioLifeTableCommon_Name: TStringField
  1867.       DisplayWidth = 47
  1868.       FieldName = 'Common_Name'
  1869.       Size = 30
  1870.     end
  1871.     object BioLifeTableSpeciesName: TStringField
  1872.       FieldName = 'Species Name'
  1873.       Visible = False
  1874.       Size = 40
  1875.     end
  1876.     object BioLifeTableNotes: TMemoField
  1877.       DisplayLabel = 'Notes Display Label'
  1878.       FieldName = 'Notes'
  1879.       Visible = False
  1880.       Size = 50
  1881.     end
  1882.     object BioLifeTableGraphic: TGraphicField
  1883.       FieldName = 'Graphic'
  1884.       Visible = False
  1885.     end
  1886.   end
  1887.   object FontDialog1: TFontDialog
  1888.     Font.Color = clWindowText
  1889.     Font.Height = -13
  1890.     Font.Name = 'System'
  1891.     Font.Style = []
  1892.     MinFontSize = 0
  1893.     MaxFontSize = 0
  1894.     Left = 576
  1895.     Top = 304
  1896.   end
  1897.   object ColorDialog1: TColorDialog
  1898.     Ctl3D = True
  1899.     Left = 576
  1900.     Top = 344
  1901.   end
  1902.   object OrdersDataSource: TDataSource
  1903.     DataSet = OrdersTable
  1904.     Left = 576
  1905.     Top = 72
  1906.   end
  1907.   object OrdersTable: TTable
  1908.     Active = True
  1909.     DatabaseName = 'DBDEMOS'
  1910.     TableName = 'ORDERS.DB'
  1911.     Left = 576
  1912.     Top = 104
  1913.     object OrdersTableOrderNo: TFloatField
  1914.       DisplayWidth = 65
  1915.       FieldName = 'OrderNo'
  1916.     end
  1917.     object OrdersTableCustNo: TFloatField
  1918.       FieldName = 'CustNo'
  1919.       Required = True
  1920.       Visible = False
  1921.     end
  1922.     object OrdersTableSaleDate: TDateTimeField
  1923.       FieldName = 'SaleDate'
  1924.       Visible = False
  1925.     end
  1926.     object OrdersTableShipDate: TDateTimeField
  1927.       FieldName = 'ShipDate'
  1928.       Visible = False
  1929.     end
  1930.     object OrdersTableEmpNo: TIntegerField
  1931.       FieldName = 'EmpNo'
  1932.       Required = True
  1933.       Visible = False
  1934.     end
  1935.     object OrdersTableShipVIA: TStringField
  1936.       FieldName = 'ShipVIA'
  1937.       Visible = False
  1938.       Size = 7
  1939.     end
  1940.     object OrdersTableTerms: TStringField
  1941.       FieldName = 'Terms'
  1942.       Visible = False
  1943.       Size = 6
  1944.     end
  1945.     object OrdersTablePaymentMethod: TStringField
  1946.       FieldName = 'PaymentMethod'
  1947.       Visible = False
  1948.       Size = 7
  1949.     end
  1950.     object OrdersTableShipToContact: TStringField
  1951.       FieldName = 'ShipToContact'
  1952.       Visible = False
  1953.     end
  1954.     object OrdersTableAmountPaid: TCurrencyField
  1955.       FieldName = 'AmountPaid'
  1956.       Visible = False
  1957.       Currency = True
  1958.     end
  1959.   end
  1960.   object EmployeeDataSource: TDataSource
  1961.     DataSet = EmployeeTable
  1962.     Left = 576
  1963.     Top = 200
  1964.   end
  1965.   object EmployeeTable: TTable
  1966.     Active = True
  1967.     DatabaseName = 'DBDEMOS'
  1968.     TableName = 'EMPLOYEE.DB'
  1969.     Left = 576
  1970.     Top = 232
  1971.     object EmployeeTableEmpNo: TIntegerField
  1972.       FieldName = 'EmpNo'
  1973.     end
  1974.     object EmployeeTableLastName: TStringField
  1975.       FieldName = 'LastName'
  1976.     end
  1977.   end
  1978. end
  1979.