-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathudDlgTable.dfm
158 lines (158 loc) · 2.96 KB
/
udDlgTable.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
object dDlgTable: TdDlgTable
Left = 0
Top = 0
Caption = 'Create/Edit Table'
ClientHeight = 390
ClientWidth = 493
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object bvl1: TBevel
Left = 9
Top = 5
Width = 388
Height = 292
Shape = bsFrame
end
object lbl1: TLabel
Left = 24
Top = 15
Width = 60
Height = 13
Caption = 'Table Name:'
end
object lblCommentsLabel: TLabel
Left = 24
Top = 74
Width = 54
Height = 13
Caption = 'Comments:'
end
object lblTableSize: TLabel
Left = 24
Top = 277
Width = 55
Height = 13
Caption = 'lblTableSize'
end
object lblTableDate: TLabel
Left = 24
Top = 258
Width = 93
Height = 13
Caption = 'Last Modification : '
end
object lbl2: TLabel
Left = 24
Top = 212
Width = 79
Height = 13
Caption = 'Schema Version:'
end
object lbl3: TLabel
Left = 29
Top = 42
Width = 55
Height = 13
Caption = 'Table Alias:'
end
object btnOK1: TButton
Left = 408
Top = 10
Width = 75
Height = 25
Caption = '&OK'
TabOrder = 0
end
object btnCancel1: TButton
Left = 408
Top = 42
Width = 75
Height = 25
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 1
end
object edtTableName: TEdit
Left = 90
Top = 12
Width = 295
Height = 21
TabOrder = 2
end
object mmoComments: TMemo
Left = 24
Top = 93
Width = 361
Height = 113
Color = clWhite
TabOrder = 3
end
object cbTempTable: TCheckBox
Left = 310
Top = 212
Width = 75
Height = 17
Caption = 'Temp Table'
Enabled = False
TabOrder = 4
end
object cbbSchema: TComboBox
Left = 24
Top = 231
Width = 133
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 5
Items.Strings = (
'RMS Only'
'RMS and SMS')
end
object edtTableAlias: TEdit
Left = 90
Top = 39
Width = 295
Height = 21
TabOrder = 6
OnExit = edtTableAliasExit
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 = []
ParentFont = False
TabOrder = 7
OnClick = btnOKClick
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 = 8
end
end