1 |
|
object IBInsertSQLEditorForm: TIBInsertSQLEditorForm |
2 |
< |
Left = 334 |
2 |
> |
Left = 392 |
3 |
|
Height = 436 |
4 |
< |
Top = 239 |
4 |
> |
Top = 360 |
5 |
|
Width = 748 |
6 |
– |
ActiveControl = TableNamesCombo |
6 |
|
Caption = 'Insert SQL Editor' |
7 |
|
ClientHeight = 436 |
8 |
|
ClientWidth = 748 |
9 |
|
OnShow = FormShow |
10 |
< |
LCLVersion = '0.9.30' |
12 |
< |
object Label1: TLabel |
13 |
< |
Left = 16 |
14 |
< |
Height = 18 |
15 |
< |
Top = 16 |
16 |
< |
Width = 78 |
17 |
< |
Caption = 'Table Name' |
18 |
< |
ParentColor = False |
19 |
< |
end |
20 |
< |
object Label2: TLabel |
21 |
< |
Left = 19 |
22 |
< |
Height = 18 |
23 |
< |
Top = 84 |
24 |
< |
Width = 39 |
25 |
< |
Caption = 'Fields' |
26 |
< |
ParentColor = False |
27 |
< |
end |
10 |
> |
LCLVersion = '1.2.6.0' |
11 |
|
object Label3: TLabel |
12 |
|
Left = 279 |
13 |
< |
Height = 18 |
13 |
> |
Height = 15 |
14 |
|
Top = 16 |
15 |
< |
Width = 26 |
15 |
> |
Width = 24 |
16 |
|
Caption = 'SQL' |
17 |
|
ParentColor = False |
18 |
|
end |
47 |
|
ModalResult = 2 |
48 |
|
TabOrder = 2 |
49 |
|
end |
67 |
– |
object TableNamesCombo: TComboBox |
68 |
– |
Left = 24 |
69 |
– |
Height = 29 |
70 |
– |
Top = 38 |
71 |
– |
Width = 201 |
72 |
– |
ItemHeight = 0 |
73 |
– |
OnCloseUp = TableNamesComboCloseUp |
74 |
– |
TabOrder = 3 |
75 |
– |
end |
76 |
– |
object FieldList: TListBox |
77 |
– |
Left = 21 |
78 |
– |
Height = 258 |
79 |
– |
Hint = 'Select Fields to include in Insert Statement, or leave unselected to select all' |
80 |
– |
Top = 102 |
81 |
– |
Width = 204 |
82 |
– |
ItemHeight = 0 |
83 |
– |
MultiSelect = True |
84 |
– |
OnDblClick = FieldListDblClick |
85 |
– |
ParentShowHint = False |
86 |
– |
ShowHint = True |
87 |
– |
TabOrder = 4 |
88 |
– |
TopIndex = -1 |
89 |
– |
end |
50 |
|
object GenerateBtn: TButton |
51 |
|
Left = 279 |
52 |
|
Height = 30 |
55 |
|
Anchors = [akRight, akBottom] |
56 |
|
Caption = 'Generate SQL' |
57 |
|
OnClick = GenerateBtnClick |
58 |
< |
TabOrder = 5 |
58 |
> |
TabOrder = 3 |
59 |
|
end |
60 |
|
object TestBtn: TButton |
61 |
|
Left = 415 |
65 |
|
Anchors = [akRight, akBottom] |
66 |
|
Caption = 'Test' |
67 |
|
OnClick = TestBtnClick |
68 |
< |
TabOrder = 6 |
68 |
> |
TabOrder = 4 |
69 |
|
end |
70 |
|
object QuoteFields: TCheckBox |
71 |
|
Left = 16 |
72 |
|
Height = 22 |
73 |
< |
Top = 380 |
74 |
< |
Width = 132 |
73 |
> |
Top = 392 |
74 |
> |
Width = 125 |
75 |
|
Caption = '&Quote Identifiers' |
76 |
+ |
TabOrder = 5 |
77 |
+ |
end |
78 |
+ |
object GenerateParams: TCheckBox |
79 |
+ |
Left = 16 |
80 |
+ |
Height = 22 |
81 |
+ |
Top = 368 |
82 |
+ |
Width = 171 |
83 |
+ |
Caption = 'Allow DSQL Placeholders' |
84 |
+ |
TabOrder = 6 |
85 |
+ |
end |
86 |
+ |
object PageControl: TPageControl |
87 |
+ |
Left = 16 |
88 |
+ |
Height = 349 |
89 |
+ |
Top = 13 |
90 |
+ |
Width = 233 |
91 |
+ |
ActivePage = ExecutePage |
92 |
+ |
TabIndex = 1 |
93 |
|
TabOrder = 7 |
94 |
+ |
object InsertPage: TTabSheet |
95 |
+ |
Caption = 'Insert' |
96 |
+ |
ClientHeight = 316 |
97 |
+ |
ClientWidth = 227 |
98 |
+ |
OnShow = InsertPageShow |
99 |
+ |
object Label1: TLabel |
100 |
+ |
Left = 8 |
101 |
+ |
Height = 15 |
102 |
+ |
Top = 8 |
103 |
+ |
Width = 69 |
104 |
+ |
Caption = 'Table Name' |
105 |
+ |
ParentColor = False |
106 |
+ |
end |
107 |
+ |
object TableNamesCombo: TComboBox |
108 |
+ |
Left = 8 |
109 |
+ |
Height = 27 |
110 |
+ |
Top = 24 |
111 |
+ |
Width = 201 |
112 |
+ |
AutoComplete = True |
113 |
+ |
AutoCompleteText = [cbactEnabled, cbactEndOfLineComplete, cbactSearchAscending] |
114 |
+ |
ItemHeight = 0 |
115 |
+ |
OnCloseUp = TableNamesComboCloseUp |
116 |
+ |
TabOrder = 0 |
117 |
+ |
end |
118 |
+ |
object Label2: TLabel |
119 |
+ |
Left = 8 |
120 |
+ |
Height = 15 |
121 |
+ |
Top = 56 |
122 |
+ |
Width = 33 |
123 |
+ |
Caption = 'Fields' |
124 |
+ |
ParentColor = False |
125 |
+ |
end |
126 |
+ |
object FieldList: TListBox |
127 |
+ |
Left = 8 |
128 |
+ |
Height = 236 |
129 |
+ |
Hint = 'Select Fields to include in Insert Statement, or leave unselected to select all' |
130 |
+ |
Top = 72 |
131 |
+ |
Width = 204 |
132 |
+ |
ItemHeight = 0 |
133 |
+ |
MultiSelect = True |
134 |
+ |
OnDblClick = FieldListDblClick |
135 |
+ |
ParentShowHint = False |
136 |
+ |
ScrollWidth = 202 |
137 |
+ |
ShowHint = True |
138 |
+ |
TabOrder = 1 |
139 |
+ |
TopIndex = -1 |
140 |
+ |
end |
141 |
+ |
end |
142 |
+ |
object ExecutePage: TTabSheet |
143 |
+ |
Caption = 'Execute' |
144 |
+ |
ClientHeight = 316 |
145 |
+ |
ClientWidth = 227 |
146 |
+ |
OnShow = ExecutePageShow |
147 |
+ |
object Label16: TLabel |
148 |
+ |
Left = 7 |
149 |
+ |
Height = 15 |
150 |
+ |
Top = 8 |
151 |
+ |
Width = 100 |
152 |
+ |
Caption = 'Procedure Name' |
153 |
+ |
ParentColor = False |
154 |
+ |
end |
155 |
+ |
object ProcedureNames: TComboBox |
156 |
+ |
Left = 7 |
157 |
+ |
Height = 27 |
158 |
+ |
Top = 24 |
159 |
+ |
Width = 201 |
160 |
+ |
ItemHeight = 0 |
161 |
+ |
OnCloseUp = ProcedureNamesCloseUp |
162 |
+ |
ParentColor = True |
163 |
+ |
TabOrder = 0 |
164 |
+ |
end |
165 |
+ |
object Label17: TLabel |
166 |
+ |
Left = 7 |
167 |
+ |
Height = 15 |
168 |
+ |
Top = 56 |
169 |
+ |
Width = 104 |
170 |
+ |
Caption = 'Input Parameters' |
171 |
+ |
ParentColor = False |
172 |
+ |
end |
173 |
+ |
object ProcInputList: TListBox |
174 |
+ |
Left = 8 |
175 |
+ |
Height = 103 |
176 |
+ |
Top = 72 |
177 |
+ |
Width = 198 |
178 |
+ |
IntegralHeight = True |
179 |
+ |
ItemHeight = 0 |
180 |
+ |
ScrollWidth = 196 |
181 |
+ |
TabOrder = 1 |
182 |
+ |
TopIndex = -1 |
183 |
+ |
end |
184 |
+ |
object Label18: TLabel |
185 |
+ |
Left = 7 |
186 |
+ |
Height = 15 |
187 |
+ |
Top = 184 |
188 |
+ |
Width = 114 |
189 |
+ |
Caption = 'Output Parameters' |
190 |
+ |
ParentColor = False |
191 |
+ |
end |
192 |
+ |
object ProcOutputList: TListBox |
193 |
+ |
Left = 7 |
194 |
+ |
Height = 80 |
195 |
+ |
Top = 200 |
196 |
+ |
Width = 198 |
197 |
+ |
IntegralHeight = True |
198 |
+ |
ItemHeight = 0 |
199 |
+ |
ScrollWidth = 196 |
200 |
+ |
TabOrder = 2 |
201 |
+ |
TopIndex = -1 |
202 |
+ |
end |
203 |
+ |
object ExecuteOnlyIndicator: TLabel |
204 |
+ |
Left = 10 |
205 |
+ |
Height = 15 |
206 |
+ |
Top = 293 |
207 |
+ |
Width = 89 |
208 |
+ |
Caption = 'Execute Only' |
209 |
+ |
Font.Style = [fsBold] |
210 |
+ |
ParentColor = False |
211 |
+ |
ParentFont = False |
212 |
+ |
Visible = False |
213 |
+ |
end |
214 |
+ |
end |
215 |
|
end |
216 |
|
object IBTransaction1: TIBTransaction |
217 |
|
Active = False |