May 2004
Intermediate to advanced
888 pages
22h 31m
English
Now we will get back to Delphi for .NET. Start a new console application by selecting File, New, Other, Console Application in the Delphi for .NET Projects folder. You will be presented with a blank project.
You will notice that Delphi includes the following uses clause by default:
Uses Sysutils;
Although this is desirable for a Win32 application, this will cause runtime errors on Mono. Many of Borland’s VCL classes contain references to Win32 specific classes and native imports and therefore cannot be run on Mono. Remove the reference to SysUtils and avoid the urge to add other VCL units to the example.
The console application consists of the following: text based menu, request for user ...
Read now
Unlock full access