Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Class TraCodeModule not found
rbuser
July 2001
edited July 2001
in
General
When compiling my app (D5, RBuilder Enterprise 5.56), I get an error message
from the ppTemplat.pas unit:
Error TraCodeModule not found
Some of my templates have RAP in them. Do I need to modify ppTemplat.pas
uses clause?
Any suggestions welcome.
G
Comments
rbuser
July 2001
edited July 2001
This is the procedure and line of code where the error comes up:
procedure TppTemplate.LoadFromStream(aStream: TStream);
lReader.ReadComponents(FRoot, nil, LoadCallback);
rbuser
July 2001
edited July 2001
Hi Gerald,
Add 'raIDE' to the uses clause.
see article 'Controlling the End-User Environment' in the tech-tips
'End-User' thread.
... and do not modify any of the RB units (seldom necessary, a no no for
beginners!)
regards,
Chris Ueberall;
message
rbuser
July 2001
edited July 2001
Thanks, that did it! (I had added it in earlier, but somehow dropped it)
This discussion has been closed.
Comments
procedure TppTemplate.LoadFromStream(aStream: TStream);
lReader.ReadComponents(FRoot, nil, LoadCallback);
Add 'raIDE' to the uses clause.
see article 'Controlling the End-User Environment' in the tech-tips
'End-User' thread.
... and do not modify any of the RB units (seldom necessary, a no no for
beginners!)
regards,
Chris Ueberall;
message
Thanks, that did it! (I had added it in earlier, but somehow dropped it)