103 |
|
FTableName: string; |
104 |
|
FIBSystemTables: TIBSystemTables; |
105 |
|
FExecuteOnly: boolean; |
106 |
+ |
protected |
107 |
+ |
procedure Loaded; override; |
108 |
|
public |
109 |
|
{ public declarations } |
110 |
|
constructor Create(TheOwner: TComponent); override; |
372 |
|
FIBSystemTables.GetFieldNames(InsertTableNames.Text,InsertFieldsList.Items); |
373 |
|
end; |
374 |
|
|
375 |
+ |
procedure TIBSQLEditorForm.Loaded; |
376 |
+ |
begin |
377 |
+ |
inherited Loaded; |
378 |
+ |
{$IFDEF WINDOWS} |
379 |
+ |
if assigned(PageControl) then |
380 |
+ |
PageControl.TabPosition := tpTop; |
381 |
+ |
{$ENDIF} |
382 |
+ |
end; |
383 |
+ |
|
384 |
|
constructor TIBSQLEditorForm.Create(TheOwner: TComponent); |
385 |
|
begin |
386 |
|
inherited Create(TheOwner); |