Registriert seit: 15. Jun 2010
Ort: Augsburg Bayern Süddeutschland
3.470 Beiträge
Delphi XE3 Enterprise
|
AW: Application beenden vor erstem Erzeugen von Form
7. Jun 2012, 15:36
einen hab ich noch
Delphi-Quellcode:
if 1=0 then
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm2, Form2);
Application.Run;
end
else
begin
if Windows.AllocConsole then
try
WriteLn('Shit happens ...');
write('> ');
readln;
finally
FreeConsole;
end;
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)
|