31 |
|
|
32 |
|
uses |
33 |
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, |
34 |
< |
StdCtrls, ExtCtrls, ComCtrls, IBSystemTables, IBSQL, IBDatabase; |
34 |
> |
StdCtrls, ExtCtrls, ComCtrls, IBSystemTables, IBSQL, IBDatabase, IB; |
35 |
|
|
36 |
|
type |
37 |
|
|
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); |