Component for Fast Report 3

Discussion of open issues, suggestions and bugs regarding MyDAC (Data Access Components for MySQL) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
jalin
Posts: 23
Joined: Tue 18 Mar 2008 14:45

Component for Fast Report 3

Post by jalin » Fri 25 Apr 2008 03:38

Where can I get components for FR 3, the components included in MyDAC have serious problems

Thanks
Alejandro

Dimon
Devart Team
Posts: 2910
Joined: Mon 05 Mar 2007 16:32

Post by Dimon » Fri 25 Apr 2008 12:40

What problems do you mean?

jalin
Posts: 23
Joined: Tue 18 Mar 2008 14:45

Component for Fast Report 3

Post by jalin » Fri 25 Apr 2008 22:15

I installed the FR component for v4 and its working ok ( I have fr 3). the problem for the component for FR v3 is a conflict with frx6.bpl, I get an error when I reload an APP including the component for v3.

The FR v3 must have the Fast Script and Fast report component separated as you did with v4.

Dimon
Devart Team
Posts: 2910
Joined: Mon 05 Mar 2007 16:32

Re: Component for Fast Report 3

Post by Dimon » Sat 26 Apr 2008 12:57

jalin wrote:I installed the FR component for v4 and its working ok ( I have fr 3). the problem for the component for FR v3 is a conflict with frx6.bpl, I get an error when I reload an APP including the component for v3.
Thank you for information. We have reproduced this problem and fixed it. This fix will be included in the next MyDAC build. As a temporary solution apply the following change.
Find the following code in the the frxMYDACRTTI.pas unit:

Code: Select all

initialization
  fsRTTIModules.Add(TFunctions);
and insert this code after it:

Code: Select all

finalization
  if fsRTTIModules  nil then
    fsRTTIModules.Remove(TFunctions);

Dimon
Devart Team
Posts: 2910
Joined: Mon 05 Mar 2007 16:32

Re: Component for Fast Report 3

Post by Dimon » Sat 26 Apr 2008 13:02

jalin wrote:The FR v3 must have the Fast Script and Fast report component separated as you did with v4.
In order to solve this problem you can use FastReport 4 MyDAC Components.

Post Reply