unit1.dfm
来自「Delphi7应用编程150例 附书源码」· DFM 代码 · 共 44 行
DFM
44 行
object Form1: TForm1
Left = 192
Top = 107
Width = 296
Height = 229
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object DBGrid1: TDBGrid
Left = 8
Top = 8
Width = 273
Height = 185
DataSource = DataSource1
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'MS Sans Serif'
TitleFont.Style = []
end
object DataSource1: TDataSource
DataSet = Query1
Left = 160
Top = 96
end
object Query1: TQuery
Active = True
SQL.Strings = (
'SELECT DISTINCT A.EmpNo,A.LastName,B.SaleDate'
'FROM "Employee.db" A,"Orders.db" B'
'WHERE A.EmpNo=B.EmpNo')
Left = 96
Top = 96
end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?