-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathudDlgColumn.dfm
220 lines (220 loc) · 4.37 KB
/
udDlgColumn.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
object dDlgColumn: TdDlgColumn
Left = 0
Top = 0
Caption = 'New/Edit Column'
ClientHeight = 376
ClientWidth = 408
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
OnClose = FormClose
OnCreate = FormCreate
OnKeyDown = FormKeyDown
PixelsPerInch = 96
TextHeight = 13
object lbl1: TLabel
Left = 23
Top = 23
Width = 69
Height = 13
Caption = 'Column Name:'
end
object lblAliasName: TLabel
Left = 23
Top = 50
Width = 56
Height = 13
Hint =
'Alias Columns are used when columns are redundant and reused for' +
' a different purpose'
Caption = 'Alias Name:'
Enabled = False
ParentShowHint = False
ShowHint = True
end
object lbl2: TLabel
Left = 23
Top = 77
Width = 54
Height = 13
Caption = 'Data Type:'
end
object lbl3: TLabel
Left = 23
Top = 104
Width = 69
Height = 13
Caption = 'Length (RMS):'
end
object lblSMSLength: TLabel
Left = 183
Top = 104
Width = 32
Height = 13
Caption = '(SMS):'
end
object lbl4: TLabel
Left = 305
Top = 104
Width = 46
Height = 13
Caption = 'Precision:'
end
object lbl5: TLabel
Left = 23
Top = 134
Width = 57
Height = 13
Caption = 'Description:'
end
object btnOk: TButton
Left = 89
Top = 326
Width = 97
Height = 42
Caption = 'OK'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ModalResult = 1
ParentFont = False
TabOrder = 0
end
object btnCancel: TButton
Left = 208
Top = 326
Width = 89
Height = 42
Caption = 'Cancel'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ModalResult = 2
ParentFont = False
TabOrder = 1
end
object edtColumnName: TEdit
Left = 99
Top = 20
Width = 289
Height = 21
HelpContext = 1
TabOrder = 2
end
object edtAliasName: TEdit
Left = 99
Top = 47
Width = 289
Height = 21
Hint =
'Alias Columns are used when columns are redundant and reused for' +
' a different purpose'
HelpContext = 1
TabStop = False
Enabled = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
end
object cDataType: TComboBox
Left = 99
Top = 74
Width = 289
Height = 21
HelpContext = 1
Style = csDropDownList
ItemHeight = 13
Sorted = True
TabOrder = 4
OnChange = cDataTypeChange
end
object edtLength: TEdit
Left = 99
Top = 101
Width = 51
Height = 21
HelpContext = 1
TabOrder = 5
OnChange = edtLengthChange
end
object edtSMSLength: TEdit
Left = 219
Top = 101
Width = 51
Height = 21
HelpContext = 1
Enabled = False
ReadOnly = True
TabOrder = 6
OnChange = edtLengthChange
end
object edtDecimals: TEdit
Left = 355
Top = 101
Width = 33
Height = 21
HelpContext = 1
TabOrder = 7
OnKeyPress = edtDecimalsKeyPress
end
object mmoComments: TMemo
Left = 23
Top = 147
Width = 365
Height = 117
HelpContext = 1
Lines.Strings = (
'')
ScrollBars = ssVertical
TabOrder = 8
end
object grp1: TGroupBox
Left = 23
Top = 269
Width = 366
Height = 44
Caption = ' Additional Options '
TabOrder = 9
object cbNullsAllowed: TCheckBox
Left = 11
Top = 17
Width = 90
Height = 17
HelpContext = 1
Caption = 'NULLs Allowed'
Checked = True
State = cbChecked
TabOrder = 0
end
object cbIdentity: TCheckBox
Left = 291
Top = 17
Width = 60
Height = 17
HelpContext = 1
Caption = 'Identity'
Checked = True
State = cbChecked
TabOrder = 1
end
object cbCalculated: TCheckBox
Left = 160
Top = 17
Width = 71
Height = 17
Hint = 'Calculated Fields'
HelpContext = 1
Caption = 'Calculated'
TabOrder = 2
end
end
end