home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap20 / navy / main.txt < prev    next >
Encoding:
Text File  |  1995-03-21  |  1.4 KB  |  74 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 99
  4.   ActiveControl = DBGrid1
  5.   AutoScroll = False
  6.   Caption = 'Navy'
  7.   ClientHeight = 273
  8.   ClientWidth = 427
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   TextHeight = 16
  15.   object DBGrid1: TDBGrid
  16.     Left = 0
  17.     Top = 56
  18.     Width = 427
  19.     Height = 217
  20.     Align = alBottom
  21.     DataSource = DataSource1
  22.     TabOrder = 0
  23.     TitleFont.Color = clWindowText
  24.     TitleFont.Height = -13
  25.     TitleFont.Name = 'System'
  26.     TitleFont.Style = []
  27.   end
  28.   object bPrior: TButton
  29.     Left = 24
  30.     Top = 8
  31.     Width = 89
  32.     Height = 33
  33.     Caption = 'Prior'
  34.     TabOrder = 1
  35.     OnClick = bPriorClick
  36.   end
  37.   object bNext: TButton
  38.     Left = 120
  39.     Top = 8
  40.     Width = 89
  41.     Height = 33
  42.     Caption = 'Next'
  43.     TabOrder = 2
  44.     OnClick = bNextClick
  45.   end
  46.   object bFirst: TButton
  47.     Left = 216
  48.     Top = 8
  49.     Width = 89
  50.     Height = 33
  51.     Caption = 'First'
  52.     TabOrder = 3
  53.     OnClick = bFirstClick
  54.   end
  55.   object bLast: TButton
  56.     Left = 312
  57.     Top = 8
  58.     Width = 89
  59.     Height = 33
  60.     Caption = 'Last'
  61.     TabOrder = 4
  62.     OnClick = bLastClick
  63.   end
  64.   object Table1: TTable
  65.     Active = True
  66.     DatabaseName = 'dbdemos'
  67.     TableName = 'CUSTOMER'
  68.   end
  69.   object DataSource1: TDataSource
  70.     DataSet = Table1
  71.     Top = 32
  72.   end
  73. end
  74.