-
Notifications
You must be signed in to change notification settings - Fork 1
/
Unit2.dfm
102 lines (102 loc) · 1.7 KB
/
Unit2.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
object Frame2: TFrame2
Left = 0
Top = 0
Width = 607
Height = 47
TabOrder = 0
object Variable: TLabel
Left = 22
Top = 17
Width = 27
Height = 19
Caption = 'X00'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label2: TLabel
Left = 55
Top = 20
Width = 40
Height = 13
Caption = '= true if'
end
object Inp: TLabel
Left = 108
Top = 3
Width = 55
Height = 13
Caption = 'Input Value'
end
object Label3: TLabel
Left = 174
Top = 3
Width = 45
Height = 13
Caption = 'Condition'
end
object Label4: TLabel
Left = 239
Top = 3
Width = 26
Height = 13
Caption = 'Value'
end
object Input: TComboBox
Left = 108
Top = 17
Width = 61
Height = 21
ItemIndex = 0
TabOrder = 0
Text = 'I01'
OnKeyPress = boxKeyPress
OnSelect = InputSelect
Items.Strings = (
'I01'
'I02'
'I03'
'I04'
'I05')
end
object Condition: TComboBox
Left = 173
Top = 17
Width = 61
Height = 21
TabOrder = 1
Text = '<'
OnKeyPress = boxKeyPress
OnSelect = ConditionSelect
Items.Strings = (
'<'
'>'
'=')
end
object rg: TRadioGroup
Left = 325
Top = 3
Width = 188
Height = 38
Caption = 'The value is set as'
Columns = 2
ItemIndex = 0
Items.Strings = (
'% of VCC'
'Volts')
TabOrder = 2
OnClick = rgClick
end
object value: TCSpinEdit
Left = 238
Top = 17
Width = 81
Height = 22
MaxValue = 100
TabOrder = 3
OnChange = valueChange
end
end