home *** CD-ROM | disk | FTP | other *** search
- object InsertForm: TInsertForm
- Left = 231
- Top = 123
- AutoScroll = False
- ActiveControl = NameEdit
- BorderStyle = bsDialog
- Caption = 'New Record'
- ClientHeight = 200
- ClientWidth = 211
- Font.Color = clBlack
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- PixelsPerInch = 96
- OnCreate = FormCreate
- TextHeight = 13
- object Label1: TLabel
- Left = 30
- Top = 12
- Width = 28
- Height = 13
- Caption = 'Name'
- end
- object Label2: TLabel
- Left = 26
- Top = 41
- Width = 32
- Height = 13
- Caption = 'Capital'
- end
- object Label3: TLabel
- Left = 13
- Top = 69
- Width = 45
- Height = 13
- Caption = 'Continent'
- end
- object Label4: TLabel
- Left = 36
- Top = 98
- Width = 22
- Height = 13
- Caption = 'Area'
- end
- object Label5: TLabel
- Left = 8
- Top = 126
- Width = 50
- Height = 13
- Caption = 'Population'
- end
- object NameEdit: TEdit
- Left = 72
- Top = 8
- Width = 121
- Height = 20
- TabOrder = 0
- end
- object CapitalEdit: TEdit
- Left = 72
- Top = 37
- Width = 121
- Height = 20
- TabOrder = 1
- end
- object ContinentEdit: TEdit
- Left = 72
- Top = 65
- Width = 121
- Height = 20
- TabOrder = 2
- end
- object AreaEdit: TEdit
- Left = 72
- Top = 94
- Width = 121
- Height = 20
- TabOrder = 3
- end
- object PopulationEdit: TEdit
- Left = 72
- Top = 122
- Width = 121
- Height = 20
- TabOrder = 4
- end
- object InsertBtn: TButton
- Left = 42
- Top = 156
- Width = 73
- Height = 33
- Caption = '&Insert'
- Default = True
- TabOrder = 5
- OnClick = InsertBtnClick
- end
- object CancelBtn: TButton
- Left = 121
- Top = 156
- Width = 73
- Height = 33
- Cancel = True
- Caption = '&Cancel'
- ModalResult = 2
- TabOrder = 6
- end
- object InsertQuery: TQuery
- DatabaseName = 'DBDEMOS'
- SQL.Strings = (
- 'insert '
- ' into Country (Name, Capital, Continent, Area, Population)'
- ' values (:Name, :Capital, :Continent, :Area, :Population)'
- ' ')
- Params.Data = {
- 01000500044E616D6500000000074361706974616C0000000009436F6E74696E
- 656E74000000000441726561000000000A506F70756C6174696F6E00000000}
- Left = 6
- Top = 156
- end
- end
-