home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / WinesEntry / Main.dfm / Main.txt
Text File  |  1998-03-16  |  4KB  |  190 lines

  1. object MainForm: TMainForm
  2.   Left = 202
  3.   Top = 132
  4.   Width = 448
  5.   Height = 282
  6.   Caption = 'Wines Database Entry Demonstration'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Label1: TLabel
  15.     Left = 16
  16.     Top = 64
  17.     Width = 52
  18.     Height = 20
  19.     Caption = 'Name:'
  20.     Font.Charset = DEFAULT_CHARSET
  21.     Font.Color = clMaroon
  22.     Font.Height = -16
  23.     Font.Name = 'MS Sans Serif'
  24.     Font.Style = [fsBold]
  25.     ParentFont = False
  26.   end
  27.   object Label2: TLabel
  28.     Left = 16
  29.     Top = 96
  30.     Width = 68
  31.     Height = 20
  32.     Caption = 'Number:'
  33.     Font.Charset = DEFAULT_CHARSET
  34.     Font.Color = clMaroon
  35.     Font.Height = -16
  36.     Font.Name = 'MS Sans Serif'
  37.     Font.Style = [fsBold]
  38.     ParentFont = False
  39.   end
  40.   object Label3: TLabel
  41.     Left = 16
  42.     Top = 128
  43.     Width = 63
  44.     Height = 20
  45.     Caption = 'Source:'
  46.     Font.Charset = DEFAULT_CHARSET
  47.     Font.Color = clMaroon
  48.     Font.Height = -16
  49.     Font.Name = 'MS Sans Serif'
  50.     Font.Style = [fsBold]
  51.     ParentFont = False
  52.   end
  53.   object Label4: TLabel
  54.     Left = 16
  55.     Top = 160
  56.     Width = 68
  57.     Height = 20
  58.     Caption = 'Vintage:'
  59.     Font.Charset = DEFAULT_CHARSET
  60.     Font.Color = clMaroon
  61.     Font.Height = -16
  62.     Font.Name = 'MS Sans Serif'
  63.     Font.Style = [fsBold]
  64.     ParentFont = False
  65.   end
  66.   object Label5: TLabel
  67.     Left = 16
  68.     Top = 192
  69.     Width = 91
  70.     Height = 20
  71.     Caption = 'Purchased:'
  72.     Font.Charset = DEFAULT_CHARSET
  73.     Font.Color = clMaroon
  74.     Font.Height = -16
  75.     Font.Name = 'MS Sans Serif'
  76.     Font.Style = [fsBold]
  77.     ParentFont = False
  78.   end
  79.   object DBNavigator1: TDBNavigator
  80.     Left = 16
  81.     Top = 16
  82.     Width = 240
  83.     Height = 25
  84.     DataSource = DataSource1
  85.     TabOrder = 0
  86.   end
  87.   object DBEdit1: TDBEdit
  88.     Left = 128
  89.     Top = 64
  90.     Width = 201
  91.     Height = 21
  92.     DataField = 'Name'
  93.     DataSource = DataSource1
  94.     TabOrder = 1
  95.   end
  96.   object DBEdit2: TDBEdit
  97.     Left = 128
  98.     Top = 96
  99.     Width = 33
  100.     Height = 21
  101.     DataField = 'Number'
  102.     DataSource = DataSource1
  103.     TabOrder = 2
  104.   end
  105.   object DBEdit3: TDBEdit
  106.     Left = 128
  107.     Top = 128
  108.     Width = 265
  109.     Height = 21
  110.     DataField = 'Source'
  111.     DataSource = DataSource1
  112.     TabOrder = 3
  113.   end
  114.   object DBEdit4: TDBEdit
  115.     Left = 128
  116.     Top = 160
  117.     Width = 57
  118.     Height = 21
  119.     DataField = 'Vintage'
  120.     DataSource = DataSource1
  121.     TabOrder = 4
  122.   end
  123.   object DBEdit5: TDBEdit
  124.     Left = 128
  125.     Top = 192
  126.     Width = 57
  127.     Height = 21
  128.     DataField = 'Purchased'
  129.     DataSource = DataSource1
  130.     TabOrder = 5
  131.   end
  132.   object BitBtn1: TBitBtn
  133.     Left = 296
  134.     Top = 184
  135.     Width = 75
  136.     Height = 25
  137.     TabOrder = 6
  138.     Kind = bkClose
  139.   end
  140.   object DataSource1: TDataSource
  141.     DataSet = Table1
  142.     Left = 296
  143.     Top = 8
  144.   end
  145.   object Table1: TTable
  146.     Active = True
  147.     DatabaseName = 'WINES'
  148.     FieldDefs = <
  149.       item
  150.         Name = 'Name'
  151.         DataType = ftString
  152.         Precision = 0
  153.         Required = False
  154.         Size = 32
  155.       end
  156.       item
  157.         Name = 'Number'
  158.         DataType = ftFloat
  159.         Precision = 0
  160.         Required = False
  161.         Size = 0
  162.       end
  163.       item
  164.         Name = 'Source'
  165.         DataType = ftString
  166.         Precision = 0
  167.         Required = False
  168.         Size = 32
  169.       end
  170.       item
  171.         Name = 'Vintage'
  172.         DataType = ftString
  173.         Precision = 0
  174.         Required = False
  175.         Size = 4
  176.       end
  177.       item
  178.         Name = 'Purchased'
  179.         DataType = ftDate
  180.         Precision = 0
  181.         Required = False
  182.         Size = 0
  183.       end>
  184.     StoreDefs = True
  185.     TableName = 'Wines.DB'
  186.     Left = 352
  187.     Top = 8
  188.   end
  189. end
  190.