(CodeLib-Manager)
Registriert seit: 10. Jun 2002
4.648 Beiträge
Delphi XE Professional
|
Re: Formular erstellen ohne Fokus zu erhalten
1. Jun 2009, 10:19
Hallo
Zeige das Formular so an:
Delphi-Quellcode:
Form2 := TForm2.Create(Application);
ShowWindow(Form2.Handle, SW_SHOWNOACTIVATE);
Form2.Visible := True;
Thomas
|