Search code examples
delphidelphi-xereportmanager

Delphi XE Reportman


Does anybody know if http://reportman.sourceforge.net/ will be available for Delphi XE?


Solution

  • I have managed to get Reportmanager 2.9b to install and run under Delphi XE by adding the following lines to the file rpconf.inc.

    // Delphi XE
    {$IFDEF VER220}
      {$DEFINE UNICODE}
      {$DEFINE DELPHI2009UP}
      {$DEFINE INDY10}
      {$DEFINE INDY10_2}
      {$DEFINE DELPHI2006UP}
      {$DEFINE DELPHI2007UP}
    {$ENDIF}
    

    Regards, Pieter