home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programming Unleashed
/
Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso
/
chap20
/
twoforms
/
main.txt
< prev
next >
Wrap
Text File
|
1995-03-20
|
2KB
|
95 lines
object Form1: TForm1
Left = 205
Top = 104
ActiveControl = DBEdit1
AutoScroll = False
Caption = 'Two Forms'
ClientHeight = 194
ClientWidth = 259
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'System'
Font.Style = []
PixelsPerInch = 96
TextHeight = 16
object Label1: TLabel
Left = 48
Top = 48
Width = 38
Height = 16
Caption = 'Name'
end
object Label2: TLabel
Left = 40
Top = 80
Width = 45
Height = 16
Caption = 'Capital'
end
object Label3: TLabel
Left = 24
Top = 112
Width = 61
Height = 16
Caption = 'Continent'
end
object DBEdit1: TDBEdit
Left = 96
Top = 48
Width = 121
Height = 24
DataField = 'Name'
DataSource = DataSource1
MaxLength = 24
TabOrder = 0
end
object DBEdit2: TDBEdit
Left = 96
Top = 80
Width = 121
Height = 24
DataField = 'Capital'
DataSource = DataSource1
MaxLength = 24
TabOrder = 1
end
object DBEdit3: TDBEdit
Left = 96
Top = 112
Width = 121
Height = 24
DataField = 'Continent'
DataSource = DataSource1
MaxLength = 24
TabOrder = 2
end
object Detail: TButton
Left = 80
Top = 152
Width = 89
Height = 33
Caption = 'Detail'
TabOrder = 3
OnClick = DetailClick
end
object DBNavigator1: TDBNavigator
Left = 72
Top = 8
Width = 105
Height = 30
DataSource = DataSource1
VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast]
TabOrder = 4
end
object Table1: TTable
Active = True
DatabaseName = 'dbdemos'
TableName = 'COUNTRY'
Top = 8
end
object DataSource1: TDataSource
DataSet = Table1
Top = 40
end
end