Move creation of CopyTableForm from application startup to a place where it's done on demand.

This commit is contained in:
Ansgar Becker
2007-07-03 19:35:09 +00:00
parent bf73dadbd3
commit 6de920d8ec
6 changed files with 19 additions and 6 deletions

View File

@ -796,7 +796,7 @@ end;
procedure TMainForm.CopyTableExecute(Sender: TObject);
begin
// copy table
CopyTableForm.ShowModal;
CopyTableWindow(self);
end;