-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlarms.dfm
106 lines (106 loc) · 2.1 KB
/
Alarms.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
object frmAlarms: TfrmAlarms
Left = 120
Top = 127
Width = 632
Height = 375
Autoscroll = FALSE
Caption = 'Alarms'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnClose = OnCloseForm
OnCreate = OnCreateForm
OnDestroy = OnDestroyForm
OnKeyDown = OnKeyDownForm
PixelsPerInch = 96
TextHeight = 16
object lblEHeader: TLabel
Left = 0
Top = 0
Width = 43
Height = 16
Caption = 'Errors'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object lblTHeader: TLabel
Left = 0
Top = 0
Width = 47
Height = 16
Caption = 'Trailer'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object lblDHeader: TLabel
Left = 0
Top = 0
Width = 50
Height = 16
Caption = 'Dialout'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object btnHelp: TBitBtn
Left = 308
Top = 320
Width = 96
Height = 25
TabOrder = 2
OnClick = OnClickTest
Kind = bkHelp
end
object btnReset: TButton
Left = 408
Top = 320
Width = 96
Height = 25
Caption = '&Reset alarms'
TabOrder = 0
OnClick = OnClickTest
end
object btnCancel: TBitBtn
Left = 508
Top = 320
Width = 96
Height = 25
Caption = '&Cancel'
TabOrder = 1
OnClick = OnClickTest
Kind = bkCancel
end
object cbAudible: TCheckBox
Left = 16
Top = 320
Width = 145
Height = 25
Caption = 'Test audible alarm'
TabOrder = 3
OnClick = OnClickTest
end
object cbWatchdog: TCheckBox
Left = 160
Top = 320
Width = 161
Height = 25
Caption = 'Test watchdog dial out'
TabOrder = 4
OnClick = OnClickTest
end
end