Sometimes you may want to run some of your old Pascal code as a "pure
Pascal" program. In Delphi 1, this is easy. Start a new project, remove
form1/unit1 from the project, and edit the .DPR file to look something like
the following ...
program Pascal;
uses
WinCrt;
{$R *.RES}
var
j : integer ;
begin
for j := 1 to 10 do writeln(j:2,' * ',j:2,' = ',j*j:3) ;
end.
My problem is that this does not work with Delphi 3 - you get the error
message "File not Found, WinCrt.dcu". Does anybody know what happened to the
WinCrt unit in Delphi 3 ?
--- PPoint 2.00
---------------
* Origin: Kingston, Canada (1:249/109.11)
|