home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / twoforms.pak / MAIN.DFM / MAIN.txt
Encoding:
Text File  |  1995-08-24  |  1.8 KB  |  97 lines

  1. object Form1: TForm1
  2.   Left = 250
  3.   Top = 107
  4.   AutoScroll = False
  5.   ActiveControl = DBEdit1
  6.   BorderIcons = [biSystemMenu, biMinimize]
  7.   BorderStyle = bsSingle
  8.   Caption = 'Two Forms Demo'
  9.   ClientHeight = 148
  10.   ClientWidth = 226
  11.   Font.Color = clBlack
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 48
  19.     Top = 16
  20.     Width = 28
  21.     Height = 13
  22.     Caption = 'Name'
  23.   end
  24.   object Label2: TLabel
  25.     Left = 44
  26.     Top = 48
  27.     Width = 32
  28.     Height = 13
  29.     Caption = 'Capital'
  30.   end
  31.   object Label3: TLabel
  32.     Left = 31
  33.     Top = 80
  34.     Width = 45
  35.     Height = 13
  36.     Caption = 'Continent'
  37.   end
  38.   object DBEdit1: TDBEdit
  39.     Left = 96
  40.     Top = 16
  41.     Width = 121
  42.     Height = 20
  43.     DataField = 'Name'
  44.     DataSource = DataSource1
  45.     MaxLength = 24
  46.     TabOrder = 0
  47.   end
  48.   object DBEdit2: TDBEdit
  49.     Left = 96
  50.     Top = 48
  51.     Width = 121
  52.     Height = 20
  53.     DataField = 'Capital'
  54.     DataSource = DataSource1
  55.     MaxLength = 24
  56.     TabOrder = 1
  57.   end
  58.   object DBEdit3: TDBEdit
  59.     Left = 96
  60.     Top = 80
  61.     Width = 121
  62.     Height = 20
  63.     DataField = 'Continent'
  64.     DataSource = DataSource1
  65.     MaxLength = 24
  66.     TabOrder = 2
  67.   end
  68.   object Detail: TButton
  69.     Left = 19
  70.     Top = 111
  71.     Width = 66
  72.     Height = 25
  73.     Caption = '&Detail'
  74.     TabOrder = 3
  75.     OnClick = DetailClick
  76.   end
  77.   object DBNavigator1: TDBNavigator
  78.     Left = 96
  79.     Top = 113
  80.     Width = 121
  81.     Height = 20
  82.     DataSource = DataSource1
  83.     VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast]
  84.     TabOrder = 4
  85.   end
  86.   object Table1: TTable
  87.     Active = True
  88.     DatabaseName = 'DBDEMOS'
  89.     TableName = 'COUNTRY'
  90.     Top = 8
  91.   end
  92.   object DataSource1: TDataSource
  93.     DataSet = Table1
  94.     Top = 40
  95.   end
  96. end
  97.