Einzelnen Beitrag anzeigen

IngoD7

Registriert seit: 16. Feb 2004
464 Beiträge
 
Delphi 7 Enterprise
 
#8

Re: Array Problem, ein kleines Programm - Hilfe

  Alt 21. Jan 2007, 22:15
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.
  Mit Zitat antworten Zitat