-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrequency_u.dfm
159 lines (159 loc) · 2.85 KB
/
Frequency_u.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
object frmFrequency: TfrmFrequency
Left = 0
Top = 0
Caption = 'Frequency Finder '#55357#56589
ClientHeight = 227
ClientWidth = 467
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object lblDataHeader: TLabel
Left = 8
Top = 5
Width = 27
Height = 13
Caption = 'Data:'
end
object lblResultsHeader: TLabel
Left = 143
Top = 111
Width = 39
Height = 13
Caption = 'Results:'
end
object lblFrequency: TLabel
Left = 277
Top = 111
Width = 55
Height = 13
Caption = 'Frequency:'
end
object lblInterval: TLabel
Left = 277
Top = 5
Width = 70
Height = 13
Caption = 'Class Interval:'
end
object lstData: TListBox
Left = 8
Top = 19
Width = 129
Height = 200
ItemHeight = 13
TabOrder = 0
end
object btnAdd: TButton
Left = 143
Top = 19
Width = 75
Height = 25
Caption = 'Add Data'
TabOrder = 1
OnClick = btnAddClick
end
object btnDelete: TButton
Left = 143
Top = 50
Width = 75
Height = 25
Caption = 'Delete'
TabOrder = 2
OnClick = btnDeleteClick
end
object pnlFrequency: TPanel
Left = 275
Top = 19
Width = 183
Height = 78
TabOrder = 3
object lblEndHeader: TLabel
Left = 12
Top = 38
Width = 22
Height = 13
Caption = 'End:'
end
object lblStartHeader: TLabel
Left = 6
Top = 11
Width = 28
Height = 13
Caption = 'Start:'
end
object edtStartRange: TEdit
Left = 40
Top = 8
Width = 121
Height = 21
NumbersOnly = True
TabOrder = 0
end
object edtEndRange: TEdit
Left = 40
Top = 34
Width = 121
Height = 21
NumbersOnly = True
TabOrder = 1
end
object btnScan: TButton
Left = 64
Top = 56
Width = 75
Height = 20
Caption = 'Scan Data'
TabOrder = 2
OnClick = btnScanClick
end
end
object memResults: TMemo
Left = 143
Top = 130
Width = 315
Height = 89
ReadOnly = True
TabOrder = 4
end
object pnlCancel: TPanel
Left = 143
Top = 81
Width = 75
Height = 25
Caption = 'Reset'
Color = clRed
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentBackground = False
ParentFont = False
TabOrder = 5
OnClick = pnlCancelClick
end
object edtFrequency: TEdit
Left = 337
Top = 105
Width = 121
Height = 21
ReadOnly = True
TabOrder = 6
end
object sedValue: TSpinEdit
Left = 224
Top = 19
Width = 33
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 7
Value = 0
end
end