home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programming Unleashed
/
Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso
/
chap21
/
qjoin
/
main.txt
< prev
next >
Wrap
Text File
|
1995-03-20
|
1KB
|
50 lines
object AJoin: TAJoin
Left = 209
Top = 110
ActiveControl = DBGrid1
AutoScroll = False
Caption = 'AJoin'
ClientHeight = 273
ClientWidth = 427
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'System'
Font.Style = []
PixelsPerInch = 96
WindowState = wsMaximized
OnCreate = FormCreate
TextHeight = 16
object DBGrid1: TDBGrid
Left = 0
Top = 0
Width = 427
Height = 273
Align = alClient
DataSource = DataSource1
TabOrder = 0
TitleFont.Color = clWindowText
TitleFont.Height = -13
TitleFont.Name = 'System'
TitleFont.Style = []
end
object Query1: TQuery
DatabaseName = 'DBDEMOS'
SQL.Strings = (
'select '
' O."OrderNo" , O."CustNo" , '
' O."SaleDate" , O."ShipDate" , '
' I."PartNo" , I."Qty" , I."DisCount"'
'from '
' Orders O , Items I'
'where '
' O.OrderNo = I.OrderNo ')
Left = 96
Top = 8
end
object DataSource1: TDataSource
DataSet = Query1
Left = 128
Top = 8
end
end