-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpFrm.dfm
More file actions
356 lines (356 loc) · 7.06 KB
/
httpFrm.dfm
File metadata and controls
356 lines (356 loc) · 7.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
object httpForm: ThttpForm
Left = 310
Top = 390
Width = 900
Height = 469
Caption = 'HTTP'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsMDIChild
OldCreateOrder = False
Position = poDefaultPosOnly
Visible = True
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object CommandPanel: TPanel
Left = 0
Top = 0
Width = 884
Height = 169
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object Label5: TLabel
Left = 8
Top = 12
Width = 16
Height = 13
Caption = 'Url:'
end
object Label6: TLabel
Left = 8
Top = 108
Width = 32
Height = 13
Caption = 'Loops:'
end
object Label7: TLabel
Left = 104
Top = 108
Width = 25
Height = 13
Caption = 'User:'
end
object Label8: TLabel
Left = 587
Top = 108
Width = 117
Height = 13
Anchors = [akTop, akRight]
Caption = 'Avg. Gets/Size/Time (s):'
end
object Label9: TLabel
Left = 8
Top = 36
Width = 41
Height = 13
Caption = 'Cookies:'
end
object Label1: TLabel
Left = 8
Top = 60
Width = 53
Height = 13
Caption = 'Proxy/Port:'
end
object Label2: TLabel
Left = 200
Top = 108
Width = 30
Height = 13
Caption = 'Delay:'
end
object Label3: TLabel
Left = 8
Top = 84
Width = 61
Height = 13
Caption = 'User/Passw:'
end
object GetButton: TButton
Left = 88
Top = 136
Width = 75
Height = 25
Caption = 'Get'
TabOrder = 17
OnClick = GetButtonClick
end
object LoginButton: TButton
Left = 328
Top = 136
Width = 75
Height = 25
Caption = 'LL Login'
TabOrder = 20
OnClick = LoginButtonClick
end
object LoopsEdit: TEdit
Left = 40
Top = 104
Width = 33
Height = 21
Hint = 'Number of requests per user'
TabOrder = 6
Text = '1'
OnChange = enableDisableAnchors
end
object LoopCount: TUpDown
Left = 73
Top = 104
Width = 21
Height = 21
Associate = LoopsEdit
Min = 1
Max = 9999
Position = 1
TabOrder = 7
Wrap = False
end
object UserCountEdit: TEdit
Left = 136
Top = 104
Width = 33
Height = 21
Hint = 'Number of users to simulate'
TabOrder = 8
Text = '1'
OnChange = enableDisableAnchors
end
object UserCount: TUpDown
Left = 169
Top = 104
Width = 21
Height = 21
Associate = UserCountEdit
Min = 1
Max = 10000
Position = 1
TabOrder = 9
Wrap = False
end
object TimeEdit: TEdit
Left = 706
Top = 104
Width = 171
Height = 21
Anchors = [akTop, akRight]
TabOrder = 15
end
object CookieEdit: TEdit
Left = 80
Top = 32
Width = 797
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
end
object GetLocationButton: TButton
Left = 248
Top = 136
Width = 75
Height = 25
Caption = 'Get Location'
Enabled = False
TabOrder = 19
OnClick = GetLocationButtonClick
end
object Complete: TCheckBox
Left = 288
Top = 106
Width = 65
Height = 17
Caption = 'Complete'
TabOrder = 12
OnClick = enableDisableAnchors
end
object ProxyServer: TEdit
Left = 80
Top = 56
Width = 672
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
end
object ProxyPort: TEdit
Left = 756
Top = 56
Width = 121
Height = 21
Anchors = [akTop, akRight]
TabOrder = 3
end
object CheckBoxAnchors: TCheckBox
Left = 360
Top = 106
Width = 57
Height = 17
Caption = 'Anchors'
TabOrder = 13
OnClick = enableDisableAnchors
end
object DelayEdit: TEdit
Left = 232
Top = 104
Width = 33
Height = 21
Hint = 'Number of seconds between the start of new users'
TabOrder = 10
Text = '0'
OnChange = enableDisableAnchors
end
object Delay: TUpDown
Left = 265
Top = 104
Width = 15
Height = 21
Associate = DelayEdit
Min = 0
Position = 0
TabOrder = 11
Wrap = False
end
object UrlEdit: TComboBox
Left = 80
Top = 8
Width = 797
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
Sorted = True
TabOrder = 0
end
object HeadButton: TButton
Left = 8
Top = 136
Width = 75
Height = 25
Caption = 'Head'
TabOrder = 16
OnClick = GetButtonClick
end
object AutoCheckButton: TButton
Left = 168
Top = 136
Width = 75
Height = 25
Caption = 'Auto Check...'
TabOrder = 18
OnClick = AutoCheckButtonClick
end
object CheckBoxCache: TCheckBox
Left = 432
Top = 136
Width = 97
Height = 17
Caption = 'Cache'
TabOrder = 21
end
object EditUserName: TEdit
Left = 80
Top = 80
Width = 476
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 4
end
object EditPassword: TEdit
Left = 563
Top = 80
Width = 314
Height = 21
Anchors = [akTop, akRight]
TabOrder = 5
end
object CheckBoxExternal: TCheckBox
Left = 424
Top = 106
Width = 73
Height = 17
Caption = 'External'
TabOrder = 14
end
end
object PageControl1: TPageControl
Left = 0
Top = 169
Width = 884
Height = 261
ActivePage = TabSheet1
Align = alClient
TabOrder = 1
object TabSheet1: TTabSheet
Caption = 'Head'
object HeadMemo: TMemo
Left = 0
Top = 0
Width = 876
Height = 233
Align = alClient
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
end
object TabSheet2: TTabSheet
Caption = 'Status'
ImageIndex = 1
object MemoStatus: TMemo
Left = 0
Top = 0
Width = 737
Height = 245
Align = alClient
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
end
end
object TabSheetError: TTabSheet
Caption = 'Errors'
ImageIndex = 3
object MemoErrors: TMemo
Left = 0
Top = 0
Width = 737
Height = 245
Align = alClient
ScrollBars = ssBoth
TabOrder = 0
end
end
object TabSheet3: TTabSheet
Caption = 'Body'
ImageIndex = 2
object BodyMemo: TMemo
Left = 0
Top = 0
Width = 884
Height = 245
Align = alClient
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
WantReturns = False
WordWrap = False
end
end
end
end