⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit1.dfm

📁 这是《Delphi程序设计基础》由李文池写的书的示例代码
💻 DFM
字号:
object Form1: TForm1
  Left = 192
  Top = 114
  Width = 492
  Height = 243
  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 Label1: TLabel
    Left = 32
    Top = 24
    Width = 55
    Height = 13
    AutoSize = False
    Caption = 'Species No'
  end
  object Label2: TLabel
    Left = 24
    Top = 64
    Width = 69
    Height = 13
    AutoSize = False
    Caption = 'Species Name'
  end
  object Label3: TLabel
    Left = 32
    Top = 96
    Width = 42
    Height = 13
    AutoSize = False
    Caption = 'Category'
  end
  object Label4: TLabel
    Left = 16
    Top = 128
    Width = 75
    Height = 13
    AutoSize = False
    Caption = 'Common_Name'
  end
  object DBEdit1: TDBEdit
    Left = 104
    Top = 24
    Width = 121
    Height = 21
    DataField = 'Species No'
    DataSource = DataSource1
    TabOrder = 0
  end
  object DBEdit2: TDBEdit
    Left = 104
    Top = 56
    Width = 121
    Height = 21
    DataField = 'Species Name'
    DataSource = DataSource1
    TabOrder = 1
  end
  object DBEdit3: TDBEdit
    Left = 104
    Top = 88
    Width = 121
    Height = 21
    DataField = 'Category'
    DataSource = DataSource1
    TabOrder = 2
  end
  object DBEdit4: TDBEdit
    Left = 104
    Top = 128
    Width = 121
    Height = 21
    DataField = 'Common_Name'
    DataSource = DataSource1
    TabOrder = 3
  end
  object DBMemo1: TDBMemo
    Left = 248
    Top = 16
    Width = 225
    Height = 177
    DataField = 'Notes'
    DataSource = DataSource1
    TabOrder = 4
  end
  object DBNavigator1: TDBNavigator
    Left = 24
    Top = 168
    Width = 204
    Height = 25
    DataSource = DataSource1
    VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast, nbPost, nbCancel]
    TabOrder = 5
  end
  object ADOTable1: TADOTable
    Active = True
    Connection = ADOConnection1
    CursorType = ctStatic
    TableName = 'biolife'
    Left = 24
    Top = 16
  end
  object DataSource1: TDataSource
    DataSet = ADOTable1
    Left = 24
    Top = 56
  end
  object ADOConnection1: TADOConnection
    Connected = True
    ConnectionString = 
      'Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\Co' +
      'mmon Files\Borland Shared\Data\dbdemos.mdb;Persist Security Info' +
      '=False'
    Mode = cmShareDenyNone
    Provider = 'Microsoft.Jet.OLEDB.4.0'
    Left = 24
    Top = 104
  end
end

⌨️ 快捷键说明

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