
November 16th, 2012, 11:14 AM
|
|
Registered User
|
|
Join Date: Nov 2012
Location: Augsburg Germany
Posts: 12
Time spent in forums: 5 h 12 m 15 sec
Reputation Power: 0
|
|
|
I'm not sure if I understood you right. Do you mean
[delphi]
Tform4.Create(self);
Showmessage('After call');
procedure TForm4.FormCreate(Sender: TObject);
begin
Showmessage('Create')
end;
procedure TForm4.FormShow(Sender: TObject);
begin
Showmessage('Show')
end;
[/delphi]
"After call" will be shown last.
If you need a MDICHild you have no Option ... you have to find to place your required code.
If you won't need MDIChild, just change Formstyle to normal, uncheck visible and remove it from automatic creation in your project.
|