Entry
Delphi: Application: Create: New: Console: How to create a new console application in Delphi?
May 26th, 2006 16:28
Knud van Eeden,
----------------------------------------------------------------------
--- Knud van Eeden --- 18 October 2003 - 19:19 pm --------------------
Delphi: Application: Create: New: Console: How to create a new console
application in Delphi?
===
Steps: Overview:
1. -Start the Delphi program
2. -select from menu option 'File'
3. -select from list 'New'
4. -select from list 'Other'
5. -select tab 'New'
6. -double click on icon 'Console Application'
7. -that will open a text window, containing the minimum information:
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
begin
{ TODO -oUser -cConsole Main : Insert code here }
end.
===
Tested successfully on
Microsoft Windows XP Professional (service pack 2),
running
Borland Delphi v7
===
Internet: see also:
---
Delphi: Application: Create: New: Windows: How to create a new Windows
application in Delphi?
http://www.faqts.com/knowledge_base/view.phtml/aid/23924/fid/175
---
C++: Application: Console: Create: Borland: C++Builder: How to create
a console application?
http://www.faqts.com/knowledge_base/view.phtml/aid/28033/fid/163
----------------------------------------------------------------------