![]() |
Konsolenprogramm - Delphi 7 PE
Hallo,
gibt es eine möglichkeit ein Konsolenprogramm in Delphi 7 PE zumachen? Ich habe schon im Forum gesucht und etwas gefunden, dass ich Neu -> Konsolenprogramm machen soll. Alerdings gibts das bei Delphi 7 PE nicht. |
Re: Konsolenprogramm - Delphi 7 PE
Datei->Neu->Weitere->Neu->Konsolen-Anwendung
|
Re: Konsolenprogramm - Delphi 7 PE
Zitat:
Delphi-Quellcode:
Sobald in dem *.dpr ein {$APPTYPE CONSOLE} steht, ist es eine Konsolenanwendung.
program Project1;
{$APPTYPE CONSOLE} uses SysUtils; begin { TODO -oUser -cConsole Main : Hier Code einfügen } end. Du kannst in einer Konsolenanwendung selbstverständlich auch Forms anzeigen (Form1.Show;) Ich hoffe diese Info hilft Dir. |
Re: Konsolenprogramm - Delphi 7 PE
Du kannst das *.dpr auch im Notepad erstellen und dann den dcc32.exe Compiler verwenden.
Beisp.
Delphi-Quellcode:
Das ganze wird nun als hello.dpr in C:\TEMP gespeichert.
program Project1;
{$APPTYPE CONSOLE} uses SysUtils; begin WriteLn('Hello world'); end. Mit folgenden Befehl wird daraus eine Exe: (Angenommen Delphi ist in C:\Programme\Borland\Delphi7 installiert)
Code:
Damit wird eine hello.exe erzeugt.
c:
cd \temp C:\Programme\Borland\Delphi7\bin\dcc32.exe Project1.dpr -uc:\Programme\Borland\Delphi7\lib Fertig. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:35 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz