Menu

delphi 7

tony coxon
2002-09-23
2013-04-06
  • tony coxon

    tony coxon - 2002-09-23

    Will RXLib install on Delphi 7?

     
    • Gilles Chervy

      Gilles Chervy - 2002-11-19

      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)

       
    • Gilles Chervy

      Gilles Chervy - 2002-11-19

      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)

       
    • Thomas Baumgartner

      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

       
    • Martin Williams

      Martin Williams - 2003-02-20

      I am getting the same problem as Thomas.....any suggestions?

       
    • Cicero Ribeiro

      Cicero Ribeiro - 2005-01-07

      Hi,
      works very well with this ....

       
    • kelaynak1

      kelaynak1 - 2005-03-13

      I send a link Rxlib For delphi 7 :

      http://www.bakale.com/forum/viewtopic.php?t=112

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.