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

📄 main.dfm

📁 这是一套全面的网络组件
💻 DFM
字号:
object MainForm: TMainForm
  Left = 286
  Top = 55
  BorderStyle = bsDialog
  Caption = 'Simulate Web Form POST request'
  ClientHeight = 322
  ClientWidth = 540
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCloseQuery = FormCloseQuery
  PixelsPerInch = 96
  TextHeight = 13
  object Label4: TLabel
    Left = 16
    Top = 50
    Width = 28
    Height = 13
    Caption = 'Name'
  end
  object Label5: TLabel
    Left = 16
    Top = 126
    Width = 22
    Height = 13
    Caption = 'Host'
  end
  object Label1: TLabel
    Left = 16
    Top = 204
    Width = 48
    Height = 13
    Caption = 'Response'
  end
  object Label2: TLabel
    Left = 16
    Top = 5
    Width = 131
    Height = 13
    Caption = 'Try the original web page at'
  end
  object Label3: TLabel
    Left = 16
    Top = 76
    Width = 42
    Height = 13
    Caption = 'Birthdate'
  end
  object Label6: TLabel
    Left = 16
    Top = 103
    Width = 40
    Height = 13
    Caption = 'Account'
  end
  object edtName: TEdit
    Left = 91
    Top = 46
    Width = 359
    Height = 21
    TabOrder = 2
    Text = 'John Doe'
  end
  object btnStart: TButton
    Left = 16
    Top = 170
    Width = 75
    Height = 25
    Caption = '&Submit'
    TabOrder = 6
    OnClick = btnStartClick
  end
  object edtHost: TEdit
    Left = 16
    Top = 143
    Width = 433
    Height = 21
    TabOrder = 5
    Text = 
      'http://www.clevercomponents.com/products/inetsuite/demos/serverf' +
      'ormpost.asp'
  end
  object Memo1: TMemo
    Left = 16
    Top = 224
    Width = 433
    Height = 89
    ReadOnly = True
    TabOrder = 7
  end
  object edtViewPage: TEdit
    Left = 16
    Top = 21
    Width = 433
    Height = 21
    Color = clBtnFace
    ReadOnly = True
    TabOrder = 0
    Text = 
      'http://www.clevercomponents.com/products/inetsuite/demos/formpos' +
      't.asp'
  end
  object btnView: TButton
    Left = 455
    Top = 19
    Width = 75
    Height = 25
    Caption = '&View...'
    TabOrder = 1
    OnClick = btnViewClick
  end
  object edtBirthdate: TEdit
    Left = 91
    Top = 72
    Width = 359
    Height = 21
    TabOrder = 3
    Text = '10/10/77'
  end
  object edtAccount: TEdit
    Left = 91
    Top = 99
    Width = 359
    Height = 21
    TabOrder = 4
    Text = '123456'
  end
  object clHttpRequest: TclHttpRequest
    Header.ContentType = 'application/x-www-form-urlencoded'
    Header.Accept = '*/*'
    Left = 312
    Top = 239
    Items = (
      'TclFormFieldRequestItem'
      True
      'Name'
      ''
      'TclFormFieldRequestItem'
      True
      'Birthdate'
      ''
      'TclFormFieldRequestItem'
      True
      'Account'
      '')
  end
  object clHttp1: TclHttp
    UserAgent = 'Mozilla/4.0 (compatible; Clever Internet Suite 6.0)'
    Cookies = <>
    Left = 280
    Top = 239
  end
end

⌨️ 快捷键说明

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