1 |
object IBSelectSQLEditorForm: TIBSelectSQLEditorForm |
2 |
Left = 527 |
3 |
Height = 437 |
4 |
Top = 460 |
5 |
Width = 747 |
6 |
ActiveControl = PageControl |
7 |
Caption = 'Select SQL Editor' |
8 |
ClientHeight = 437 |
9 |
ClientWidth = 747 |
10 |
OnShow = FormShow |
11 |
Position = poScreenCenter |
12 |
LCLVersion = '1.8.0.4' |
13 |
object Label3: TLabel |
14 |
Left = 279 |
15 |
Height = 14 |
16 |
Top = 16 |
17 |
Width = 24 |
18 |
Caption = 'SQL' |
19 |
ParentColor = False |
20 |
end |
21 |
object SQLText: TMemo |
22 |
Left = 279 |
23 |
Height = 327 |
24 |
Top = 36 |
25 |
Width = 437 |
26 |
Anchors = [akTop, akLeft, akRight, akBottom] |
27 |
ScrollBars = ssAutoBoth |
28 |
TabOrder = 0 |
29 |
end |
30 |
object Button1: TButton |
31 |
Left = 550 |
32 |
Height = 30 |
33 |
Top = 379 |
34 |
Width = 72 |
35 |
Anchors = [akRight, akBottom] |
36 |
Caption = 'OK' |
37 |
Default = True |
38 |
ModalResult = 1 |
39 |
TabOrder = 1 |
40 |
end |
41 |
object Button2: TButton |
42 |
Left = 638 |
43 |
Height = 30 |
44 |
Top = 379 |
45 |
Width = 72 |
46 |
Anchors = [akRight, akBottom] |
47 |
Cancel = True |
48 |
Caption = 'Cancel' |
49 |
ModalResult = 2 |
50 |
TabOrder = 2 |
51 |
end |
52 |
object GenerateBtn: TButton |
53 |
Left = 278 |
54 |
Height = 30 |
55 |
Top = 379 |
56 |
Width = 101 |
57 |
Anchors = [akRight, akBottom] |
58 |
Caption = 'Generate SQL' |
59 |
OnClick = GenerateBtnClick |
60 |
TabOrder = 3 |
61 |
end |
62 |
object TestBtn: TButton |
63 |
Left = 414 |
64 |
Height = 30 |
65 |
Top = 379 |
66 |
Width = 66 |
67 |
Anchors = [akRight, akBottom] |
68 |
Caption = 'Test' |
69 |
OnClick = TestBtnClick |
70 |
TabOrder = 4 |
71 |
end |
72 |
object QuoteFields: TCheckBox |
73 |
Left = 24 |
74 |
Height = 22 |
75 |
Top = 400 |
76 |
Width = 125 |
77 |
Caption = '&Quote Identifiers' |
78 |
TabOrder = 5 |
79 |
end |
80 |
object PageControl: TPageControl |
81 |
Left = 24 |
82 |
Height = 335 |
83 |
Top = 28 |
84 |
Width = 232 |
85 |
ActivePage = SelectPage |
86 |
TabIndex = 0 |
87 |
TabOrder = 6 |
88 |
object SelectPage: TTabSheet |
89 |
Caption = 'Tables' |
90 |
ClientHeight = 303 |
91 |
ClientWidth = 226 |
92 |
OnShow = SelectPageShow |
93 |
object Label1: TLabel |
94 |
Left = 7 |
95 |
Height = 14 |
96 |
Top = 4 |
97 |
Width = 69 |
98 |
Caption = 'Table Name' |
99 |
ParentColor = False |
100 |
end |
101 |
object Label2: TLabel |
102 |
Left = 7 |
103 |
Height = 14 |
104 |
Top = 56 |
105 |
Width = 33 |
106 |
Caption = 'Fields' |
107 |
ParentColor = False |
108 |
end |
109 |
object Label4: TLabel |
110 |
Left = 7 |
111 |
Height = 14 |
112 |
Top = 208 |
113 |
Width = 77 |
114 |
Caption = 'Primary Keys' |
115 |
ParentColor = False |
116 |
end |
117 |
object TableNamesCombo: TComboBox |
118 |
Left = 6 |
119 |
Height = 27 |
120 |
Top = 20 |
121 |
Width = 201 |
122 |
AutoComplete = True |
123 |
AutoCompleteText = [cbactEnabled, cbactEndOfLineComplete, cbactSearchAscending] |
124 |
ItemHeight = 0 |
125 |
OnCloseUp = TableNamesComboCloseUp |
126 |
TabOrder = 0 |
127 |
end |
128 |
object FieldList: TListBox |
129 |
Left = 7 |
130 |
Height = 123 |
131 |
Hint = 'Select Fields to include in Select Statements, or leave unselected to select all' |
132 |
Top = 77 |
133 |
Width = 204 |
134 |
ItemHeight = 0 |
135 |
MultiSelect = True |
136 |
OnDblClick = FieldListDblClick |
137 |
ParentShowHint = False |
138 |
ScrollWidth = 202 |
139 |
ShowHint = True |
140 |
TabOrder = 1 |
141 |
TopIndex = -1 |
142 |
end |
143 |
object PrimaryKeyList: TListBox |
144 |
Left = 7 |
145 |
Height = 64 |
146 |
Top = 224 |
147 |
Width = 200 |
148 |
ItemHeight = 0 |
149 |
OnDblClick = PrimaryKeyListDblClick |
150 |
ScrollWidth = 198 |
151 |
TabOrder = 2 |
152 |
TopIndex = -1 |
153 |
end |
154 |
end |
155 |
object ExecutePage: TTabSheet |
156 |
Caption = 'Procedures' |
157 |
ClientHeight = 303 |
158 |
ClientWidth = 226 |
159 |
OnShow = ExecutePageShow |
160 |
object Label16: TLabel |
161 |
Left = 7 |
162 |
Height = 15 |
163 |
Top = 3 |
164 |
Width = 100 |
165 |
Caption = 'Procedure Name' |
166 |
ParentColor = False |
167 |
end |
168 |
object Label17: TLabel |
169 |
Left = 7 |
170 |
Height = 15 |
171 |
Top = 60 |
172 |
Width = 104 |
173 |
Caption = 'Input Parameters' |
174 |
ParentColor = False |
175 |
end |
176 |
object Label18: TLabel |
177 |
Left = 8 |
178 |
Height = 15 |
179 |
Top = 172 |
180 |
Width = 114 |
181 |
Caption = 'Output Parameters' |
182 |
ParentColor = False |
183 |
end |
184 |
object ProcedureNames: TComboBox |
185 |
Left = 7 |
186 |
Height = 27 |
187 |
Top = 20 |
188 |
Width = 201 |
189 |
ItemHeight = 0 |
190 |
OnCloseUp = ProcedureNamesCloseUp |
191 |
ParentColor = True |
192 |
TabOrder = 0 |
193 |
end |
194 |
object ProcInputList: TListBox |
195 |
Left = 7 |
196 |
Height = 80 |
197 |
Top = 81 |
198 |
Width = 198 |
199 |
IntegralHeight = True |
200 |
ItemHeight = 0 |
201 |
ScrollWidth = 196 |
202 |
TabOrder = 1 |
203 |
TopIndex = -1 |
204 |
end |
205 |
object ProcOutputList: TListBox |
206 |
Left = 7 |
207 |
Height = 80 |
208 |
Top = 192 |
209 |
Width = 198 |
210 |
IntegralHeight = True |
211 |
ItemHeight = 0 |
212 |
ScrollWidth = 196 |
213 |
TabOrder = 2 |
214 |
TopIndex = -1 |
215 |
end |
216 |
object SelectProcedure: TLabel |
217 |
Left = 7 |
218 |
Height = 14 |
219 |
Top = 285 |
220 |
Width = 126 |
221 |
Anchors = [akLeft, akBottom] |
222 |
Caption = 'Is ''Select Procedure''' |
223 |
Font.Height = -11 |
224 |
Font.Style = [fsBold] |
225 |
ParentColor = False |
226 |
ParentFont = False |
227 |
Visible = False |
228 |
end |
229 |
end |
230 |
end |
231 |
object GenerateParams: TCheckBox |
232 |
Left = 24 |
233 |
Height = 22 |
234 |
Top = 376 |
235 |
Width = 171 |
236 |
Caption = 'Allow DSQL Placeholders' |
237 |
TabOrder = 7 |
238 |
end |
239 |
object IBTransaction1: TIBTransaction |
240 |
Active = False |
241 |
left = 212 |
242 |
top = 390 |
243 |
end |
244 |
end |