Registriert seit: 15. Jun 2010
Ort: Augsburg Bayern Süddeutschland
3.470 Beiträge
Delphi XE3 Enterprise
|
AW: Anwendung ohne MainForm
17. Jul 2012, 13:12
das Wechseln der Mainform geht ja ...
Delphi-Quellcode:
var
P:Pointer;
begin
P := @Application.Mainform;
Application.MainForm.Free;
Pointer(P^) := TForm6.Create(Application);
TForm(p^).Show;
end;
Thomas Wassermann H₂♂ Das Problem steckt meistens zwischen den Ohren
DRY DRY KISS
H₂♂ (wenn bei meinen Snipplets nichts anderes angegeben ist Lizenz: WTFPL)
|