afxadahimpl1.dfm

来自「Delphi实战演练一书的配套光盘」· DFM 代码 · 共 101 行

DFM
101
字号
object AFXAdah: TAFXAdah
  Left = 192
  Top = 107
  Width = 520
  Height = 375
  Caption = 'AFXAdah'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = ActiveFormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 18
    Top = 16
    Width = 30
    Height = 15
    Caption = '查询'
    Font.Charset = GB2312_CHARSET
    Font.Color = clWindowText
    Font.Height = -15
    Font.Name = '宋体'
    Font.Style = []
    ParentFont = False
  end
  object SQL: TMemo
    Left = 16
    Top = 40
    Width = 321
    Height = 61
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -13
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    Lines.Strings = (
      'select * from customer')
    ParentFont = False
    TabOrder = 0
  end
  object DatabaseName: TComboBox
    Left = 345
    Top = 40
    Width = 145
    Height = 21
    ItemHeight = 13
    TabOrder = 1
    Text = 'DBDEMOS'
    OnClick = DatabaseNameClick
  end
  object RunButton: TButton
    Left = 346
    Top = 71
    Width = 144
    Height = 25
    Caption = '运  行  查  询'
    Default = True
    TabOrder = 2
    OnClick = RunButtonClick
  end
  object DBGrid1: TDBGrid
    Left = 16
    Top = 120
    Width = 479
    Height = 207
    DataSource = DataSource1
    TabOrder = 3
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = 'MS Sans Serif'
    TitleFont.Style = []
  end
  object DataSource1: TDataSource
    DataSet = ClientData
    Left = 90
    Top = 264
  end
  object RemoteServer: TDCOMConnection
    Connected = True
    ServerGUID = '{85C677A2-F92F-11D0-9FFC-00A0248E4B9A}'
    ServerName = 'Serv.AdHocQueryDemo'
    ComputerName = 'Ntser4'
    Left = 20
    Top = 264
  end
  object ClientData: TClientDataSet
    Aggregates = <>
    PacketRecords = 10
    Params = <>
    ProviderName = 'AdHocProvider'
    RemoteServer = RemoteServer
    Left = 56
    Top = 264
  end
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?