mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 21:43:42 +02:00

- how to program for multiple DBs - use of DB login form - how to programmatically load and save from/to databases git-svn-id: trunk@39395 -
24 lines
535 B
Plaintext
24 lines
535 B
Plaintext
object Form1: TForm1
|
|
Left = 361
|
|
Height = 387
|
|
Top = 162
|
|
Width = 455
|
|
Caption = 'SQLDB Tutorial3'
|
|
ClientHeight = 387
|
|
ClientWidth = 455
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
LCLVersion = '1.0.2.0'
|
|
object SalaryGrid: TStringGrid
|
|
Left = 8
|
|
Height = 104
|
|
Top = 48
|
|
Width = 432
|
|
ColCount = 4
|
|
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goSmoothScroll]
|
|
RowCount = 4
|
|
TabOrder = 0
|
|
OnValidateEntry = SalaryGridValidateEntry
|
|
end
|
|
end
|