Does not compile with Delphi 2007
Brought to you by:
capslock
The TraceTool v.12 does not compile with Delphi 2007 because of error in the TraceTool.pas source file.
There is:
~~~~~~~~~
uses Classes , windows, ActiveX , sysutils, Registry , Messages, Forms, //Dialogs,
menus, comobj , AxCtrls , SyncObjs , Contnrs, Graphics , TypInfo,
{$ifdef COMPILER_12_UP}
WideStrings ,
generics.collections ,
{$endif COMPILER_12_UP}
HTTPApp ;
Should be:
~~~~~~~~~~
uses Classes , windows, ActiveX , sysutils, Registry , Messages, Forms, //Dialogs,
menus, comobj , AxCtrls , SyncObjs , Contnrs, Graphics , TypInfo,
{$ifdef COMPILER_10_UP}
WideStrings ,
{$endif COMPILER_10_UP}
{$ifdef COMPILER_12_UP}
generics.collections ,
{$endif COMPILER_12_UP}
HTTPApp ;
Thanks.
I updated the sources.
Thierry