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

📄 unit1.dfm

📁 关于书籍《Borland c++Builder工程实践》的源代码
💻 DFM
字号:
object Form1: TForm1
  Left = 299
  Top = 78
  Width = 680
  Height = 653
  Caption = 'FTP Client'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnClick = Reinitialize
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 32
    Top = 8
    Width = 28
    Height = 13
    Caption = 'Host: '
  end
  object Label2: TLabel
    Left = 256
    Top = 8
    Width = 39
    Height = 13
    Caption = 'UserID: '
  end
  object Label3: TLabel
    Left = 376
    Top = 8
    Width = 52
    Height = 13
    Caption = 'Password: '
  end
  object Label5: TLabel
    Left = 32
    Top = 344
    Width = 28
    Height = 13
    Caption = #21453#39304
  end
  object Label4: TLabel
    Left = 184
    Top = 8
    Width = 25
    Height = 13
    Caption = 'Port: '
  end
  object Label6: TLabel
    Left = 48
    Top = 144
    Width = 98
    Height = 13
    Caption = #26381#21153#22120#25991#20214#21015#34920
  end
  object Edit1: TEdit
    Left = 64
    Top = 8
    Width = 113
    Height = 21
    TabOrder = 0
    Text = '192.168.2.8'
  end
  object Edit3: TEdit
    Left = 304
    Top = 8
    Width = 65
    Height = 21
    TabOrder = 1
    Text = 'cadhust'
  end
  object MaskEdit1: TMaskEdit
    Left = 432
    Top = 8
    Width = 65
    Height = 21
    PasswordChar = '#'
    TabOrder = 2
    Text = 'welcome'
  end
  object Button1: TButton
    Left = 96
    Top = 56
    Width = 75
    Height = 25
    Caption = 'Connect'
    TabOrder = 3
    OnClick = Button1Click
  end
  object Memo1: TMemo
    Left = 32
    Top = 376
    Width = 601
    Height = 217
    Font.Charset = ANSI_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Courier'
    Font.Style = []
    ParentFont = False
    ScrollBars = ssBoth
    TabOrder = 4
  end
  object Button2: TButton
    Left = 96
    Top = 104
    Width = 75
    Height = 25
    Caption = 'List'
    Enabled = False
    TabOrder = 5
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 176
    Top = 56
    Width = 75
    Height = 25
    Caption = 'Change Dir'
    Enabled = False
    TabOrder = 6
    OnClick = Button3Click
  end
  object Button5: TButton
    Left = 256
    Top = 56
    Width = 75
    Height = 25
    Caption = 'Download'
    Enabled = False
    TabOrder = 7
    OnClick = Button5Click
  end
  object Button6: TButton
    Left = 256
    Top = 104
    Width = 75
    Height = 25
    Caption = 'Upload'
    Enabled = False
    TabOrder = 8
    OnClick = Button6Click
  end
  object Button7: TButton
    Left = 88
    Top = 336
    Width = 75
    Height = 25
    Caption = 'Clear'
    Enabled = False
    TabOrder = 9
    OnClick = Button7Click
  end
  object Button4: TButton
    Left = 424
    Top = 56
    Width = 75
    Height = 25
    Caption = 'Delete'
    Enabled = False
    TabOrder = 10
    OnClick = Button4Click
  end
  object Edit2: TEdit
    Left = 208
    Top = 8
    Width = 41
    Height = 21
    TabOrder = 11
    Text = '21'
  end
  object RadioGroup1: TRadioGroup
    Left = 592
    Top = 8
    Width = 73
    Height = 57
    Caption = 'Mode'
    TabOrder = 12
  end
  object RadioButton1: TRadioButton
    Left = 600
    Top = 24
    Width = 57
    Height = 17
    Caption = 'Binary'
    Checked = True
    Enabled = False
    TabOrder = 13
    TabStop = True
    OnClick = RadioButton1Click
  end
  object RadioButton2: TRadioButton
    Left = 600
    Top = 40
    Width = 57
    Height = 17
    Caption = 'ASCII'
    Enabled = False
    TabOrder = 14
    OnClick = RadioButton2Click
  end
  object StatusBar1: TStatusBar
    Left = 0
    Top = 604
    Width = 672
    Height = 19
    Panels = <>
    SimplePanel = True
  end
  object StringGrid1: TStringGrid
    Left = 32
    Top = 168
    Width = 601
    Height = 160
    TabOrder = 16
    ColWidths = (
      64
      153
      156
      125
      280)
  end
  object rename: TButton
    Left = 424
    Top = 104
    Width = 75
    Height = 25
    Caption = 'rename'
    Enabled = False
    TabOrder = 17
    OnClick = Remname
  end
  object Button8: TButton
    Left = 336
    Top = 56
    Width = 75
    Height = 25
    Caption = 'Reinitialize'
    Enabled = False
    TabOrder = 18
  end
  object Button9: TButton
    Left = 336
    Top = 104
    Width = 75
    Height = 25
    Caption = 'Authentication'
    Enabled = False
    TabOrder = 19
    OnClick = Authentication
  end
  object Button10: TButton
    Left = 176
    Top = 104
    Width = 75
    Height = 25
    Caption = 'CurrentDir'
    Enabled = False
    TabOrder = 20
    OnClick = CurrentDir
  end
  object NMFTP1: TNMFTP
    Port = 21
    ReportLevel = 0
    OnDisconnect = NMFTP1Disconnect
    OnConnect = NMFTP1Connect
    OnPacketRecvd = OPacketReceive
    OnPacketSent = NMFTP1PacketSent
    OnError = NMFTP1Error
    OnTransactionStart = NMFTP1TransactionStart
    OnTransactionStop = NMFTP1TransactionStop
    OnAuthenticationNeeded = NMFTP1AuthenticationNeeded
    OnAuthenticationFailed = NMFTP1AuthenticationFailed
    OnFailure = OnFTPFaile
    OnSuccess = NMFTP1Success
    OnUnSupportedFunction = NMFTP1UnSupportedFunction
    Vendor = 2411
    ParseList = False
    ProxyPort = 0
    Passive = False
    FirewallType = FTUser
    FWAuthenticate = False
    Top = 96
  end
  object SaveDialog1: TSaveDialog
    Top = 136
  end
  object OpenDialog1: TOpenDialog
    Top = 168
  end
end

⌨️ 快捷键说明

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