Please fix soon because my excel code is in a VCL, Console, and ISAPI DLL - currently I am only able to compile the VCL Desktop app and not the others preventing me to move on.
Sample that does not compile:
Code: Select all
program Project9;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils, XLSReadWriteII5;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.