-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpRecurringFrm.dfm
More file actions
334 lines (334 loc) · 7.55 KB
/
HttpRecurringFrm.dfm
File metadata and controls
334 lines (334 loc) · 7.55 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
object HttpRecurringForm: THttpRecurringForm
Left = 527
Top = 381
Width = 540
Height = 553
Caption = 'HTTP Autochecks'
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 Panel1: TPanel
Left = 0
Top = 0
Width = 524
Height = 249
Align = alTop
TabOrder = 0
object Label1: TLabel
Left = 8
Top = 40
Width = 16
Height = 13
Caption = 'Url:'
end
object Label2: TLabel
Left = 8
Top = 64
Width = 41
Height = 13
Caption = 'Cookies:'
end
object Label3: TLabel
Left = 8
Top = 88
Width = 29
Height = 13
Caption = 'Proxy:'
end
object Label4: TLabel
Left = 440
Top = 88
Width = 22
Height = 13
Anchors = [akTop, akRight]
Caption = 'Port:'
end
object Label5: TLabel
Left = 8
Top = 168
Width = 32
Height = 13
Caption = 'E-Mail:'
end
object Label6: TLabel
Left = 8
Top = 192
Width = 33
Height = 13
Caption = 'SMTP:'
end
object Label7: TLabel
Left = 440
Top = 192
Width = 22
Height = 13
Anchors = [akTop, akRight]
Caption = 'Port:'
end
object Label8: TLabel
Left = 8
Top = 216
Width = 49
Height = 13
Caption = 'Max Time:'
end
object Label9: TLabel
Left = 240
Top = 224
Width = 58
Height = 13
Caption = 'SMTP User:'
end
object DBNavigator: TDBNavigator
Left = 8
Top = 8
Width = 240
Height = 25
DataSource = DataSourceHttpRecurring
TabOrder = 0
end
object DBEditProxy: TDBEdit
Left = 64
Top = 88
Width = 369
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'PROXY_SERVER'
DataSource = DataSourceHttpRecurring
TabOrder = 3
end
object DBEditProxyPort: TDBEdit
Left = 469
Top = 88
Width = 50
Height = 21
Anchors = [akTop, akRight]
DataField = 'PROXY_PORT'
DataSource = DataSourceHttpRecurring
TabOrder = 4
end
object DBMemoUrl: TDBMemo
Left = 64
Top = 40
Width = 455
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'HTTP_URL'
DataSource = DataSourceHttpRecurring
TabOrder = 1
end
object DBMemoCookies: TDBMemo
Left = 64
Top = 64
Width = 455
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'HTTP_COOKIES'
DataSource = DataSourceHttpRecurring
TabOrder = 2
end
object DBRadioGroupInterval: TDBRadioGroup
Left = 8
Top = 120
Width = 513
Height = 41
Anchors = [akLeft, akTop, akRight]
Caption = 'Interval'
Columns = 5
DataField = 'INTERVAL'
DataSource = DataSourceHttpRecurring
Items.Strings = (
'One Minute'
'Five Minutes'
'One Hour'
'12 Hours'
'One Day')
TabOrder = 5
Values.Strings = (
'60'
'300'
'3600'
'43200'
'86400')
end
object DBEditSmtp: TDBEdit
Left = 64
Top = 192
Width = 369
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'SMTP_SERVER'
DataSource = DataSourceHttpRecurring
TabOrder = 7
end
object DBEditSmtpPort: TDBEdit
Left = 469
Top = 192
Width = 50
Height = 21
Anchors = [akTop, akRight]
DataField = 'SMTP_PORT'
DataSource = DataSourceHttpRecurring
TabOrder = 8
end
object DBEditEmail: TDBEdit
Left = 64
Top = 168
Width = 455
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'E_MAIL_ALERT'
DataSource = DataSourceHttpRecurring
TabOrder = 6
end
object DBEditMaxTime: TDBEdit
Left = 64
Top = 216
Width = 121
Height = 21
DataField = 'MAX_TIME'
DataSource = DataSourceHttpRecurring
TabOrder = 9
end
object DBEditSMTP_USER: TDBEdit
Left = 304
Top = 216
Width = 217
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'SMTP_USER'
DataSource = DataSourceHttpRecurring
TabOrder = 10
end
end
object DBGrid: TDBGrid
Left = 0
Top = 249
Width = 524
Height = 265
Align = alClient
DataSource = DataSourceHttpRecurring
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'MS Sans Serif'
TitleFont.Style = []
OnDrawColumnCell = DBGridDrawColumnCell
Columns = <
item
Expanded = False
FieldName = 'SHORT_URL'
Width = 369
Visible = True
end
item
Expanded = False
FieldName = 'NEXT_START'
Visible = True
end
item
Expanded = False
FieldName = 'LAST_TIME'
Title.Caption = 'Last Time'
Visible = True
end
item
Expanded = False
FieldName = 'LAST_STATUS'
Title.Caption = 'Last Status'
Visible = True
end>
end
object TableHttpRecurring: TTable
OnCalcFields = TableHttpRecurringCalcFields
AutoRefresh = True
DatabaseName = 'llCheck_DB'
IndexName = 'HTTP_RECURRING_IDX'
TableName = 'HTTP_RECURRING'
UpdateMode = upWhereKeyOnly
Left = 64
Top = 392
object TableHttpRecurringID: TFloatField
AutoGenerateValue = arAutoInc
FieldName = 'ID'
ReadOnly = True
Visible = False
end
object TableHttpRecurringHTTP_URL: TMemoField
FieldName = 'HTTP_URL'
Required = True
BlobType = ftMemo
Size = 1995
end
object TableHttpRecurringHTTP_COOKIES: TMemoField
FieldName = 'HTTP_COOKIES'
BlobType = ftMemo
Size = 1995
end
object TableHttpRecurringPROXY_SERVER: TStringField
FieldName = 'PROXY_SERVER'
Size = 255
end
object TableHttpRecurringPROXY_PORT: TFloatField
FieldName = 'PROXY_PORT'
end
object TableHttpRecurringINTERVAL: TFloatField
FieldName = 'INTERVAL'
Required = True
end
object TableHttpRecurringNEXT_START: TDateTimeField
AutoGenerateValue = arDefault
DisplayLabel = 'Next Start'
FieldName = 'NEXT_START'
end
object TableHttpRecurringMAX_TIME: TFloatField
FieldName = 'MAX_TIME'
Required = True
end
object TableHttpRecurringE_MAIL_ALERT: TStringField
FieldName = 'E_MAIL_ALERT'
Size = 255
end
object TableHttpRecurringSMTP_SERVER: TStringField
FieldName = 'SMTP_SERVER'
Size = 255
end
object TableHttpRecurringSMTP_PORT: TFloatField
FieldName = 'SMTP_PORT'
end
object TableHttpRecurringSMTP_USER: TStringField
FieldName = 'SMTP_USER'
Size = 255
end
object TableHttpRecurringSHORT_URL: TStringField
DisplayLabel = 'Url'
FieldKind = fkCalculated
FieldName = 'SHORT_URL'
Size = 255
Calculated = True
end
object TableHttpRecurringLAST_TIME: TFloatField
FieldName = 'LAST_TIME'
end
object TableHttpRecurringLAST_STATUS: TFloatField
FieldName = 'LAST_STATUS'
end
end
object DataSourceHttpRecurring: TDataSource
DataSet = TableHttpRecurring
Left = 176
Top = 392
end
end