-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmainunit.dfm
More file actions
165 lines (165 loc) · 3.59 KB
/
mainunit.dfm
File metadata and controls
165 lines (165 loc) · 3.59 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
object MainForm: TMainForm
Left = 433
Top = 228
Width = 573
Height = 576
Caption = 'Zoom Player Communication & Control Sample Application v3.2'
Color = clBtnFace
Constraints.MinHeight = 300
Constraints.MinWidth = 300
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnShow = FormShow
DesignSize = (
557
541)
PixelsPerInch = 96
TextHeight = 13
object IncomingGB: TGroupBox
Left = 6
Top = 168
Width = 546
Height = 366
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = ' Traffic log : '
TabOrder = 0
DesignSize = (
546
366)
object MSGMemo: TMemo
Left = 8
Top = 20
Width = 529
Height = 307
Anchors = [akLeft, akTop, akRight, akBottom]
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
end
object ClearButton: TButton
Left = 442
Top = 332
Width = 95
Height = 25
Caption = 'Clear'
TabOrder = 1
OnClick = ClearButtonClick
end
end
object ConnectPanel: TPanel
Left = 6
Top = 6
Width = 546
Height = 157
Anchors = [akLeft, akTop, akRight]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 1
DesignSize = (
546
157)
object LabelConnectTo: TLabel
Left = 300
Top = 13
Width = 55
Height = 13
Anchors = [akTop, akRight]
Caption = 'Connect to:'
end
object LabelTextEntry: TLabel
Left = 8
Top = 43
Width = 75
Height = 13
Caption = 'TCP Text Entry:'
end
object SendButton: TSpeedButton
Left = 437
Top = 123
Width = 100
Height = 25
Anchors = [akTop, akRight]
Caption = 'Send Text'
OnClick = SendButtonClick
end
object WinAPIConnectButton: TButton
Left = 106
Top = 7
Width = 172
Height = 25
Caption = 'SendMessage (WinAPI) Connect'
TabOrder = 0
Visible = False
OnClick = WinAPIConnectButtonClick
end
object TCPConnectButton: TButton
Left = 8
Top = 7
Width = 95
Height = 25
Caption = 'TCP Connect'
TabOrder = 1
OnClick = TCPConnectButtonClick
end
object BrowseButton: TButton
Left = 8
Top = 123
Width = 100
Height = 25
Caption = 'Browse for File'
TabOrder = 2
OnClick = BrowseButtonClick
end
object PlayButton: TButton
Left = 111
Top = 123
Width = 100
Height = 25
Caption = 'Play / Pause'
TabOrder = 3
OnClick = PlayButtonClick
end
object TCPAddress: TEdit
Left = 362
Top = 9
Width = 117
Height = 21
Anchors = [akTop, akRight]
TabOrder = 4
Text = '127.0.0.1'
end
object PortEdit: TEdit
Left = 483
Top = 9
Width = 55
Height = 21
Anchors = [akTop, akRight]
TabOrder = 5
Text = '4769'
end
object TCPCommand: TMemo
Left = 8
Top = 59
Width = 529
Height = 60
Anchors = [akLeft, akTop, akRight]
TabOrder = 6
end
end
object XPManifest1: TXPManifest
Left = 22
Top = 74
end
end