booking.~dfm

来自「这是《Delphi程序设计基础》由李文池写的书的示例代码」· ~DFM 代码 · 共 74 行

~DFM
74
字号
object frm_booking: Tfrm_booking
  Left = 210
  Top = 102
  Width = 696
  Height = 480
  Caption = ' '#22270#20070#39044#32422#25253#34920
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnClose = FormClose
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 13
  object DBGrid1: TDBGrid
    Left = 8
    Top = 16
    Width = 665
    Height = 393
    DataSource = DataSource1
    TabOrder = 0
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = 'MS Sans Serif'
    TitleFont.Style = []
  end
  object Button1: TButton
    Left = 296
    Top = 416
    Width = 75
    Height = 25
    Caption = #25171#21360#25253#34920
    TabOrder = 1
    OnClick = Button1Click
  end
  object RvDataSetConnection1: TRvDataSetConnection
    RuntimeVisibility = rtDeveloper
    DataSet = ADOQuery1
    Left = 80
    Top = 416
  end
  object RvProject1: TRvProject
    ProjectFile = 'booking.rav'
    Left = 112
    Top = 416
  end
  object ADOQuery1: TADOQuery
    Active = True
    Connection = frmAdmin.ADOCon
    CursorType = ctStatic
    Parameters = <>
    SQL.Strings = (
      
        'select records.NO,records.libcard_id,records.reader_name,records' +
        '.book_id,records.book_name,readers.phone,booksinf.book_num-books' +
        'inf.borrow_num as re_num,booksinf.booking_num'
      'from records,readers,booksinf'
      
        'where  records.libcard_id=readers.libcard_id and records.book_id' +
        '=booksinf.book_id and records.status='#39#39044#32422#39)
    Left = 16
    Top = 416
  end
  object DataSource1: TDataSource
    DataSet = ADOQuery1
    Left = 48
    Top = 416
  end
end

⌨️ 快捷键说明

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