📄 main.dfm
字号:
object MainForm: TMainForm
Left = 286
Top = 55
BorderStyle = bsDialog
Caption = 'Simulate Web Form POST requests from multiple web forms'
ClientHeight = 360
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 = 50
Height = 13
Caption = 'First Name'
end
object Label1: TLabel
Left = 16
Top = 217
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 = 51
Height = 13
Caption = 'Last Name'
end
object Label6: TLabel
Left = 16
Top = 102
Width = 40
Height = 13
Caption = 'Account'
end
object Label7: TLabel
Left = 16
Top = 128
Width = 72
Height = 13
Caption = 'File Description'
end
object Label8: TLabel
Left = 16
Top = 154
Width = 47
Height = 13
Caption = 'File Name'
end
object edtFirstName: TEdit
Left = 91
Top = 47
Width = 359
Height = 21
TabOrder = 2
Text = 'John'
end
object btnStart: TButton
Left = 16
Top = 183
Width = 75
Height = 25
Caption = '&Submit'
TabOrder = 7
OnClick = btnStartClick
end
object memResult: TMemo
Left = 16
Top = 234
Width = 433
Height = 115
ReadOnly = True
TabOrder = 9
WordWrap = False
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/submitw' +
'izard.asp'
end
object btnView: TButton
Left = 455
Top = 19
Width = 75
Height = 25
Caption = '&View...'
TabOrder = 1
OnClick = btnViewClick
end
object edtLastName: TEdit
Left = 91
Top = 72
Width = 359
Height = 21
TabOrder = 3
Text = 'Doe'
end
object edtAccount: TEdit
Left = 91
Top = 98
Width = 359
Height = 21
TabOrder = 4
Text = '123'
end
object edtDescription: TEdit
Left = 91
Top = 124
Width = 359
Height = 21
TabOrder = 5
Text = 'Delphi project file'
end
object edtFileName: TEdit
Left = 91
Top = 150
Width = 359
Height = 21
TabOrder = 6
Text = 'SubmitWizard.dpr'
end
object btnStop: TButton
Left = 99
Top = 183
Width = 75
Height = 25
Caption = 'Sto&p'
TabOrder = 8
OnClick = btnStopClick
end
object clMultiUploader: TclMultiUploader
Connection = clInternetConnection
UploadList = <
item
RequestMethod = 'POST'
URL =
'http://www.clevercomponents.com/products/inetsuite/demos/submitw' +
'izardtwo.asp'
UseHttpRequest = True
HttpRequest = rbStep1
end
item
RequestMethod = 'POST'
URL =
'http://www.clevercomponents.com/products/inetsuite/demos/submitw' +
'izardthree.asp'
UseHttpRequest = True
HttpRequest = rbStep2
end>
ReconnectAfter = 1
InternetAgent = 'Mozilla/4.0 (compatible; Clever Internet Suite)'
PublishFileMask = '*.*'
OnProcessCompleted = clMultiUploaderProcessCompleted
Left = 132
Top = 300
end
object clInternetConnection: TclInternetConnection
Left = 254
Top = 298
end
object rbStep1: TclHttpRequest
Header.ContentType = 'application/x-www-form-urlencoded'
Header.Accept = '*/*'
Left = 132
Top = 246
Items = (
'TclFormFieldRequestItem'
True
'FirstName'
''
'TclFormFieldRequestItem'
True
'LastName'
''
'TclFormFieldRequestItem'
True
'Account'
'')
end
object rbStep2: TclHttpRequest
Header.ContentType = 'multipart/form-data'
Header.Accept = '*/*'
Left = 254
Top = 244
Items = (
'TclFormFieldRequestItem'
True
'Description'
''
'TclSubmitFileRequestItem'
True
'FileName'
''
'application/octet-stream')
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -