-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest01.dfm
More file actions
134 lines (134 loc) · 2.89 KB
/
test01.dfm
File metadata and controls
134 lines (134 loc) · 2.89 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
object frmHTTPTester: TfrmHTTPTester
Left = 0
Top = 0
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'HTTP Server Tester'
ClientHeight = 641
ClientWidth = 897
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = []
OnCreate = FormCreate
PixelsPerInch = 123
TextHeight = 17
object pnlControls: TPanel
Left = 0
Top = 0
Width = 897
Height = 83
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alTop
TabOrder = 0
ExplicitWidth = 893
object lblServerAddress: TLabel
Left = 21
Top = 14
Width = 97
Height = 17
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Server Address:'
end
object lblPort: TLabel
Left = 291
Top = 14
Width = 31
Height = 17
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Port:'
end
object edtServerAddress: TEdit
Left = 115
Top = 10
Width = 155
Height = 25
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
TabOrder = 0
Text = '127.0.0.1'
end
object edtPort: TEdit
Left = 329
Top = 10
Width = 72
Height = 25
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
NumbersOnly = True
TabOrder = 1
Text = '3042'
end
object btnRunTests: TButton
Left = 431
Top = 8
Width = 153
Height = 32
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Run Tests'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
OnClick = btnRunTestsClick
end
object btnClear: TButton
Left = 605
Top = 8
Width = 154
Height = 32
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Clear Results'
TabOrder = 3
OnClick = btnClearClick
end
end
object mmResults: TMemo
Left = 0
Top = 83
Width = 897
Height = 558
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 1
ExplicitWidth = 893
ExplicitHeight = 549
end
end