Pieter van Wyk
Pieter van Wyk

Reputation: 2378

Delphi XE Reportman

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

Upvotes: 1

Views: 647

Answers (2)

Pieter van Wyk
Pieter van Wyk

Reputation: 2378

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

Upvotes: 2

jachguate
jachguate

Reputation: 17203

I don't know this project, but it is GNU/MPL Licensed, it means you can do it by yourself.

As it is available for delphi 2009, if you have some experience dealing with components and packages it is almost trivial to upgrade it to compile with delphi XE.

If not, you can ask the author (or hire someone else) to do the upgrade on your behalf.

Upvotes: 1

Related Questions