Jump to content
PeterPanettone

GreatisUltimatePack for Delphi 10.4 Sydney

Recommended Posts

 

GreatisUltimatePack is an old LEGACY Delphi library with still useful components and routines.

 

AFAIK GreatisUltimatePack has been discontinued and the author cannot be reached anymore.

 

For anyone who still wants to use this library:

To make GreatisUltimatePack compatible with Delphi 10.4 Sydney you should apply these changes:

 

Search the units for:

 

{$IFDEF VER330}
{$DEFINE XE2PLUS}
{$ENDIF}

Then add these lines to the above lines:

 

{$IFDEF VER340}
{$DEFINE XE2PLUS}
{$ENDIF}

This should make it possible to install the component package in Delphi 10.4 Sydney: Ultimate.dpk

Edited by PeterPanettone

Share this post


Link to post

Good tip! I  have a number of old libraries like this that I keep using with newer Delphi versions.  My solutions is to do something like:

 

{$if CompilerVersion >= 23}
 {$DEFINE XE2PLUS}
{$ifend}

That way I don't have to keep changing it with new releases.

Edited by MarkShark

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×