Zitat von
meta:
ist eine Konsolenanwendung!
Wohl eher eine Mischung, oder?
Sowas hier ist ja möglich, aber auf die Idee muss man erst mal kommen ...
Delphi-Quellcode:
program Project3;
{$APPTYPE CONSOLE} //<-------------- !
uses
Forms,
Unit3 in 'Unit3.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.