After this source patching, I tried to compile and install the Rx Lib as described in the readme.txt, but during the compile of DCLRX6.DPK I get the error message class TFormStorage not found.
Do I have to do some compiling before I do the steps of the readme.txt? What's wrong? I have Delphi Enterprise.
Sorry, if it is a stupid question, but I have no knowledge about Component Libraries.
Thank you for every information.
Thomas
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Will RXLib install on Delphi 7?
install works fine, you just have to do some source patching:
rxconst.pas, add
{$IFDEF VER150}
const
SDelphiKey = 'Software\Borland\Delphi\7.0';
{$ENDIF}
RxResExp.pas: change uses in implementation
original-> {$IFDEF RX_D4}, ImgList {$ENDIF};
New->: {$IFDEF RX_D4}{$IFNDEF VER150}, ImgList {$ENDIF}{$ENDIF};
RX.INC:
add this
{$IFDEF VER150} { Borland Delphi 7.0 }
{$DEFINE RX_D3}
{$DEFINE RX_D4}
{$DEFINE RX_D5}
{$DEFINE RX_D6}
{$DEFINE RX_D7}
{$WARN SYMBOL_PLATFORM OFF}
{$WARN UNIT_PLATFORM OFF}
{$ENDIF}
and you're done.... (using delphi7 studio architect)
install works fine, you just have to do some source patching:
rxconst.pas, add
{$IFDEF VER150}
const
SDelphiKey = 'Software\Borland\Delphi\7.0';
{$ENDIF}
RxResExp.pas: change uses in implementation
original-> {$IFDEF RX_D4}, ImgList {$ENDIF};
New->: {$IFDEF RX_D4}{$IFNDEF VER150}, ImgList {$ENDIF}{$ENDIF};
RX.INC:
add this
{$IFDEF VER150} { Borland Delphi 7.0 }
{$DEFINE RX_D3}
{$DEFINE RX_D4}
{$DEFINE RX_D5}
{$DEFINE RX_D6}
{$DEFINE RX_D7}
{$WARN SYMBOL_PLATFORM OFF}
{$WARN UNIT_PLATFORM OFF}
{$ENDIF}
and you're done.... (using delphi7 studio architect)
After this source patching, I tried to compile and install the Rx Lib as described in the readme.txt, but during the compile of DCLRX6.DPK I get the error message class TFormStorage not found.
Do I have to do some compiling before I do the steps of the readme.txt? What's wrong? I have Delphi Enterprise.
Sorry, if it is a stupid question, but I have no knowledge about Component Libraries.
Thank you for every information.
Thomas
I am getting the same problem as Thomas.....any suggestions?
Hi,
works very well with this ....
I send a link Rxlib For delphi 7 :
http://www.bakale.com/forum/viewtopic.php?t=112