home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 September
/
Chip_2002-09_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d3456
/
SQLSET.ZIP
/
DEMO
/
MAIN.DFM
/
MAIN.txt
Wrap
Text File
|
2001-07-12
|
2KB
|
77 lines
object MainForm: TMainForm
Left = 206
Top = 121
Width = 420
Height = 298
Caption = 'Demo of TSQLSet'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
Width = 412
Height = 57
Align = alTop
TabOrder = 0
object Label1: TLabel
Left = 16
Top = 8
Width = 44
Height = 13
Caption = 'Countries'
end
object ComboBox1: TComboBox
Left = 16
Top = 24
Width = 153
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
TabOrder = 0
OnChange = ComboBox1Change
end
end
object DBGrid1: TDBGrid
Left = 0
Top = 57
Width = 412
Height = 214
Align = alClient
DataSource = DataSource1
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'MS Sans Serif'
TitleFont.Style = []
end
object SQLSet1: TSQLSet
SQLItems = <
item
Title = 'Countries'
SQLText = 'SELECT Country FROM "Customer.db"'#13#10'GROUP BY Country'#13#10
end
item
Title = 'Customers'
SQLText = 'SELECT * FROM "Customer.db"'#13#10'WHERE Country = "CountryVar"'
end>
Left = 328
Top = 16
end
object DataSource1: TDataSource
Left = 368
Top = 64
end
object Query1: TQuery
Left = 368
Top = 16
end
end