안녕하세요.
델파이에서 Console Application 으로 시작하고 나서 코드를 내 마음대로 바꾸고 싶습니다.
델파이 처음 시작할 때,
program Project5;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.
이렇게 나오는데
program Project5;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils;
begin
end.
이렇게 바꾸고 싶습니다. 방법좀 알려주시면 감사하겠습니다.
|