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

📄 unit1.dfm

📁 this is simpele phone book write in delphi and the database is access
💻 DFM
字号:
object Form1: TForm1
  Left = 209
  Top = 174
  Width = 796
  Height = 504
  Caption = 'Form1'
  Color = clTeal
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 528
    Top = 40
    Width = 17
    Height = 13
    Caption = '?C?'
    Font.Charset = ARABIC_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
  end
  object Label2: TLabel
    Left = 528
    Top = 96
    Width = 62
    Height = 13
    Caption = '?C? IC??CI??'
    Font.Charset = ARABIC_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
  end
  object Label3: TLabel
    Left = 528
    Top = 148
    Width = 21
    Height = 13
    Caption = 'E???'
    Font.Charset = ARABIC_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
  end
  object Label4: TLabel
    Left = 528
    Top = 192
    Width = 22
    Height = 13
    Caption = '?C??'
    Font.Charset = ARABIC_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
  end
  object Label5: TLabel
    Left = 528
    Top = 228
    Width = 33
    Height = 13
    Caption = '??EC??'
    Font.Charset = ARABIC_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
  end
  object Label6: TLabel
    Left = 528
    Top = 308
    Width = 21
    Height = 13
    Caption = 'AI??'
    Font.Charset = ARABIC_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
  end
  object DBGrid1: TDBGrid
    Left = 24
    Top = 128
    Width = 320
    Height = 161
    DataSource = DataSource1
    TabOrder = 0
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = 'MS Sans Serif'
    TitleFont.Style = []
    Columns = <
      item
        Expanded = False
        FieldName = 'ID'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'name'
        Title.Caption = '?C?'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'family'
        Title.Caption = '?C???'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'tel'
        Title.Caption = 'E???'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'fax'
        Title.Caption = '?C??'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'mobil'
        Title.Caption = '??EC??'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'email'
        Title.Caption = 'C????'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'address'
        Title.Caption = 'AI??'
        Visible = True
      end>
  end
  object DBNavigator1: TDBNavigator
    Left = 120
    Top = 312
    Width = 240
    Height = 25
    DataSource = DataSource1
    TabOrder = 1
  end
  object DBEdit1: TDBEdit
    Left = 376
    Top = 40
    Width = 121
    Height = 21
    DataField = 'name'
    DataSource = DataSource1
    TabOrder = 2
  end
  object DBEdit2: TDBEdit
    Left = 376
    Top = 88
    Width = 121
    Height = 21
    DataField = 'family'
    DataSource = DataSource1
    TabOrder = 3
  end
  object DBEdit3: TDBEdit
    Left = 376
    Top = 144
    Width = 121
    Height = 21
    DataField = 'tel'
    DataSource = DataSource1
    TabOrder = 4
  end
  object DBEdit4: TDBEdit
    Left = 376
    Top = 192
    Width = 121
    Height = 21
    DataField = 'fax'
    DataSource = DataSource1
    TabOrder = 5
  end
  object DBMemo1: TDBMemo
    Left = 376
    Top = 296
    Width = 113
    Height = 49
    DataField = 'address'
    DataSource = DataSource1
    TabOrder = 6
  end
  object DBEdit5: TDBEdit
    Left = 376
    Top = 232
    Width = 121
    Height = 21
    DataField = 'mobil'
    DataSource = DataSource1
    TabOrder = 7
  end
  object Button1: TButton
    Left = 344
    Top = 384
    Width = 75
    Height = 25
    Caption = 'first'
    TabOrder = 8
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 424
    Top = 384
    Width = 75
    Height = 25
    Caption = 'last'
    TabOrder = 9
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 504
    Top = 384
    Width = 75
    Height = 25
    Caption = 'prior'
    TabOrder = 10
    OnClick = Button3Click
  end
  object Button4: TButton
    Left = 584
    Top = 384
    Width = 75
    Height = 25
    Caption = 'next'
    TabOrder = 11
    OnClick = Button4Click
  end
  object Button5: TButton
    Left = 264
    Top = 384
    Width = 75
    Height = 25
    Caption = 'delete'
    TabOrder = 12
    OnClick = Button5Click
  end
  object Button6: TButton
    Left = 184
    Top = 384
    Width = 75
    Height = 25
    Caption = 'insert'
    TabOrder = 13
    OnClick = Button6Click
  end
  object Button7: TButton
    Left = 104
    Top = 384
    Width = 75
    Height = 25
    Caption = 'edit'
    TabOrder = 14
    OnClick = Button7Click
  end
  object Button8: TButton
    Left = 24
    Top = 384
    Width = 75
    Height = 25
    Caption = 'post'
    TabOrder = 15
    OnClick = Button8Click
  end
  object Button9: TButton
    Left = 664
    Top = 384
    Width = 75
    Height = 25
    Caption = 'cancel'
    TabOrder = 16
    OnClick = Button9Click
  end
  object ADOConnection1: TADOConnection
    Connected = True
    ConnectionString = 
      'Provider=Microsoft.Jet.OLEDB.4.0;Data Source=tel.mdb;Persist Sec' +
      'urity Info=False'
    LoginPrompt = False
    Mode = cmShareDenyNone
    Provider = 'Microsoft.Jet.OLEDB.4.0'
    Left = 32
    Top = 40
  end
  object ADOTable1: TADOTable
    Active = True
    Connection = ADOConnection1
    CursorType = ctStatic
    TableName = 'azi'
    Left = 80
    Top = 40
  end
  object DataSource1: TDataSource
    DataSet = ADOTable1
    Left = 128
    Top = 40
  end
end

⌨️ 快捷键说明

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