-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm.Main.dfm
229 lines (229 loc) · 4.5 KB
/
Form.Main.dfm
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
object Main: TMain
Left = 0
Top = 0
Caption = 'VCL - RAD Server & Sqids'
ClientHeight = 770
ClientWidth = 707
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Position = poDesktopCenter
TextHeight = 13
object Label5: TLabel
Left = 0
Top = 99
Width = 707
Height = 32
Align = alTop
Alignment = taCenter
AutoSize = False
Caption = 'Include in the request Body'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Layout = tlCenter
ExplicitTop = 114
end
object Label6: TLabel
Left = 0
Top = 378
Width = 707
Height = 32
Align = alTop
Alignment = taCenter
AutoSize = False
Caption = 'Response from RAD Server'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Layout = tlCenter
ExplicitLeft = -8
ExplicitTop = 431
end
object mmResp: TMemo
Left = 0
Top = 410
Width = 707
Height = 360
Align = alClient
Lines.Strings = (
'Memo1')
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
end
object mmReq: TMemo
Left = 0
Top = 131
Width = 707
Height = 247
Align = alTop
ScrollBars = ssVertical
TabOrder = 1
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 707
Height = 73
Align = alTop
BevelOuter = bvNone
Caption = 'Panel1'
ShowCaption = False
TabOrder = 2
object Label4: TLabel
Left = 9
Top = 43
Width = 28
Height = 13
Caption = 'Page:'
end
object Label1: TLabel
Left = 246
Top = 42
Width = 46
Height = 13
Alignment = taRightJustify
Caption = 'Cust. No:'
end
object btnDelete: TButton
Left = 344
Top = 8
Width = 75
Height = 25
Caption = 'Delete'
TabOrder = 0
OnClick = btnDeleteClick
end
object btnPost: TButton
Left = 265
Top = 8
Width = 75
Height = 25
Caption = 'Post'
TabOrder = 1
OnClick = btnPostClick
end
object btnPut: TButton
Left = 184
Top = 8
Width = 75
Height = 25
Caption = 'Put'
TabOrder = 2
OnClick = btnPutClick
end
object btnGet: TButton
Left = 104
Top = 8
Width = 75
Height = 25
Caption = 'Get'
TabOrder = 3
OnClick = btnGetClick
end
object bntList: TButton
Left = 8
Top = 8
Width = 90
Height = 25
Caption = 'List'
TabOrder = 4
OnClick = bntListClick
end
object edtPage: TEdit
Left = 42
Top = 39
Width = 42
Height = 21
TabOrder = 5
Text = '0'
OnChange = edtPageChange
end
object UpDown1: TUpDown
Left = 84
Top = 39
Width = 16
Height = 21
Associate = edtPage
TabOrder = 6
end
object edtOrderID: TEdit
Left = 298
Top = 39
Width = 121
Height = 21
TabOrder = 7
TextHint = 'Enter the PK'
end
end
object Panel2: TPanel
Left = 0
Top = 73
Width = 707
Height = 26
Align = alTop
BevelOuter = bvNone
Caption = 'Panel2'
ShowCaption = False
TabOrder = 3
object lblRequest: TLabel
Left = 78
Top = 0
Width = 629
Height = 26
Align = alClient
Caption = 'Request'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Layout = tlCenter
ExplicitWidth = 47
ExplicitHeight = 13
end
object Label3: TLabel
Left = 0
Top = 0
Width = 78
Height = 26
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Request sent:'
Layout = tlCenter
ExplicitHeight = 41
end
end
object RESTResponse1: TRESTResponse
Left = 592
Top = 624
end
object EMSProvider1: TEMSProvider
ApiVersion = '2'
URLHost = '127.0.0.1'
URLPort = 8080
URLBasePath = 'Customers'
Left = 384
Top = 624
end
object BackendEndpoint1: TBackendEndpoint
Provider = EMSProvider1
Params = <>
Response = RESTResponse1
OnAfterExecute = BackendEndpoint1AfterExecute
Left = 488
Top = 624
end
end