home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap01 / twoquery / main.txt < prev    next >
Text File  |  1995-03-20  |  8KB  |  345 lines

  1. object Form1: TForm1
  2.   Left = 231
  3.   Top = 60
  4.   ActiveControl = Panel1
  5.   AutoScroll = False
  6.   Caption = 'Two Query'
  7.   ClientHeight = 398
  8.   ClientWidth = 393
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 393
  21.     Height = 41
  22.     Align = alTop
  23.     TabOrder = 0
  24.     object DBNavigator: TDBNavigator
  25.       Left = 8
  26.       Top = 8
  27.       Width = 241
  28.       Height = 25
  29.       DataSource = DataSource1
  30.       Ctl3D = False
  31.       ParentCtl3D = False
  32.       TabOrder = 0
  33.     end
  34.   end
  35.   object Panel2: TPanel
  36.     Left = 0
  37.     Top = 41
  38.     Width = 393
  39.     Height = 176
  40.     Align = alTop
  41.     BevelInner = bvLowered
  42.     BorderWidth = 4
  43.     Caption = 'Panel2'
  44.     TabOrder = 1
  45.     object ScrollBox: TScrollBox
  46.       Left = 6
  47.       Top = 6
  48.       Width = 381
  49.       Height = 164
  50.       HorzScrollBar.Margin = 6
  51.       HorzScrollBar.Range = 330
  52.       VertScrollBar.Margin = 6
  53.       VertScrollBar.Range = 198
  54.       Align = alClient
  55.       AutoScroll = False
  56.       BorderStyle = bsNone
  57.       TabOrder = 0
  58.       object Label1: TLabel
  59.         Left = 6
  60.         Top = 6
  61.         Width = 35
  62.         Height = 13
  63.         Caption = 'CustNo'
  64.         FocusControl = EditCustNo
  65.       end
  66.       object Label2: TLabel
  67.         Left = 62
  68.         Top = 6
  69.         Width = 44
  70.         Height = 13
  71.         Caption = 'Company'
  72.         FocusControl = EditCompany
  73.       end
  74.       object Label3: TLabel
  75.         Left = 6
  76.         Top = 44
  77.         Width = 28
  78.         Height = 13
  79.         Caption = 'Addr1'
  80.         FocusControl = EditAddr
  81.       end
  82.       object Label4: TLabel
  83.         Left = 162
  84.         Top = 44
  85.         Width = 28
  86.         Height = 13
  87.         Caption = 'Addr2'
  88.         FocusControl = EditAddr2
  89.       end
  90.       object Label5: TLabel
  91.         Left = 6
  92.         Top = 82
  93.         Width = 17
  94.         Height = 13
  95.         Caption = 'City'
  96.         FocusControl = EditCity
  97.       end
  98.       object Label6: TLabel
  99.         Left = 87
  100.         Top = 82
  101.         Width = 25
  102.         Height = 13
  103.         Caption = 'State'
  104.         FocusControl = EditState
  105.       end
  106.       object Label7: TLabel
  107.         Left = 193
  108.         Top = 82
  109.         Width = 15
  110.         Height = 13
  111.         Caption = 'Zip'
  112.         FocusControl = EditZip
  113.       end
  114.       object Label8: TLabel
  115.         Left = 6
  116.         Top = 120
  117.         Width = 36
  118.         Height = 13
  119.         Caption = 'Country'
  120.         FocusControl = EditCountry
  121.       end
  122.       object Label9: TLabel
  123.         Left = 112
  124.         Top = 120
  125.         Width = 31
  126.         Height = 13
  127.         Caption = 'Phone'
  128.         FocusControl = EditPhone
  129.       end
  130.       object Label10: TLabel
  131.         Left = 193
  132.         Top = 120
  133.         Width = 20
  134.         Height = 13
  135.         Caption = 'FAX'
  136.         FocusControl = EditFAX
  137.       end
  138.       object Label11: TLabel
  139.         Left = 274
  140.         Top = 120
  141.         Width = 41
  142.         Height = 13
  143.         Caption = 'TaxRate'
  144.         FocusControl = EditTaxRate
  145.       end
  146.       object Label12: TLabel
  147.         Left = 6
  148.         Top = 158
  149.         Width = 37
  150.         Height = 13
  151.         Caption = 'Contact'
  152.         FocusControl = EditContact
  153.       end
  154.       object Label13: TLabel
  155.         Left = 112
  156.         Top = 158
  157.         Width = 78
  158.         Height = 13
  159.         Caption = 'LastInvoiceDate'
  160.         FocusControl = EditLastInvoiceDate
  161.       end
  162.       object EditCustNo: TDBEdit
  163.         Left = 6
  164.         Top = 21
  165.         Width = 50
  166.         Height = 19
  167.         DataField = 'CustNo'
  168.         DataSource = DataSource1
  169.         MaxLength = 0
  170.         TabOrder = 0
  171.       end
  172.       object EditCompany: TDBEdit
  173.         Left = 62
  174.         Top = 21
  175.         Width = 150
  176.         Height = 19
  177.         DataField = 'Company'
  178.         DataSource = DataSource1
  179.         MaxLength = 0
  180.         TabOrder = 1
  181.       end
  182.       object EditAddr: TDBEdit
  183.         Left = 6
  184.         Top = 59
  185.         Width = 150
  186.         Height = 19
  187.         DataField = 'Addr1'
  188.         DataSource = DataSource1
  189.         MaxLength = 0
  190.         TabOrder = 2
  191.       end
  192.       object EditAddr2: TDBEdit
  193.         Left = 162
  194.         Top = 59
  195.         Width = 150
  196.         Height = 19
  197.         DataField = 'Addr2'
  198.         DataSource = DataSource1
  199.         MaxLength = 0
  200.         TabOrder = 3
  201.       end
  202.       object EditCity: TDBEdit
  203.         Left = 6
  204.         Top = 97
  205.         Width = 75
  206.         Height = 19
  207.         DataField = 'City'
  208.         DataSource = DataSource1
  209.         MaxLength = 0
  210.         TabOrder = 4
  211.       end
  212.       object EditState: TDBEdit
  213.         Left = 87
  214.         Top = 97
  215.         Width = 100
  216.         Height = 19
  217.         DataField = 'State'
  218.         DataSource = DataSource1
  219.         MaxLength = 0
  220.         TabOrder = 5
  221.       end
  222.       object EditZip: TDBEdit
  223.         Left = 193
  224.         Top = 97
  225.         Width = 50
  226.         Height = 19
  227.         DataField = 'Zip'
  228.         DataSource = DataSource1
  229.         MaxLength = 0
  230.         TabOrder = 6
  231.       end
  232.       object EditCountry: TDBEdit
  233.         Left = 6
  234.         Top = 135
  235.         Width = 100
  236.         Height = 19
  237.         DataField = 'Country'
  238.         DataSource = DataSource1
  239.         MaxLength = 0
  240.         TabOrder = 7
  241.       end
  242.       object EditPhone: TDBEdit
  243.         Left = 112
  244.         Top = 135
  245.         Width = 75
  246.         Height = 19
  247.         DataField = 'Phone'
  248.         DataSource = DataSource1
  249.         MaxLength = 0
  250.         TabOrder = 8
  251.       end
  252.       object EditFAX: TDBEdit
  253.         Left = 193
  254.         Top = 135
  255.         Width = 75
  256.         Height = 19
  257.         DataField = 'FAX'
  258.         DataSource = DataSource1
  259.         MaxLength = 0
  260.         TabOrder = 9
  261.       end
  262.       object EditTaxRate: TDBEdit
  263.         Left = 274
  264.         Top = 135
  265.         Width = 50
  266.         Height = 19
  267.         DataField = 'TaxRate'
  268.         DataSource = DataSource1
  269.         MaxLength = 0
  270.         TabOrder = 10
  271.       end
  272.       object EditContact: TDBEdit
  273.         Left = 6
  274.         Top = 173
  275.         Width = 100
  276.         Height = 19
  277.         DataField = 'Contact'
  278.         DataSource = DataSource1
  279.         MaxLength = 0
  280.         TabOrder = 11
  281.       end
  282.       object EditLastInvoiceDate: TDBEdit
  283.         Left = 112
  284.         Top = 173
  285.         Width = 50
  286.         Height = 19
  287.         DataField = 'LastInvoiceDate'
  288.         DataSource = DataSource1
  289.         MaxLength = 0
  290.         TabOrder = 12
  291.       end
  292.     end
  293.   end
  294.   object Panel3: TPanel
  295.     Left = 0
  296.     Top = 217
  297.     Width = 393
  298.     Height = 181
  299.     Align = alClient
  300.     BevelInner = bvLowered
  301.     BorderWidth = 4
  302.     Caption = 'Panel3'
  303.     TabOrder = 2
  304.     object DBGrid1: TDBGrid
  305.       Left = 6
  306.       Top = 6
  307.       Width = 381
  308.       Height = 169
  309.       Align = alClient
  310.       BorderStyle = bsNone
  311.       DataSource = DataSource2
  312.       TabOrder = 0
  313.       TitleFont.Color = clBlack
  314.       TitleFont.Height = -11
  315.       TitleFont.Name = 'MS Sans Serif'
  316.       TitleFont.Style = []
  317.     end
  318.   end
  319.   object DataSource1: TDataSource
  320.     DataSet = Table1
  321.     Left = 287
  322.     Top = 5
  323.   end
  324.   object DataSource2: TDataSource
  325.     DataSet = Table2
  326.     Left = 341
  327.     Top = 5
  328.   end
  329.   object Table1: TTable
  330.     DatabaseName = 'DBDEMOS'
  331.     TableName = 'customer.db'
  332.     Left = 260
  333.     Top = 5
  334.   end
  335.   object Table2: TTable
  336.     DatabaseName = 'DBDEMOS'
  337.     IndexFieldNames = 'CustNo'
  338.     MasterFields = 'CustNo'
  339.     MasterSource = DataSource1
  340.     TableName = 'orders.db'
  341.     Left = 314
  342.     Top = 5
  343.   end
  344. end
  345.