Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Barcode Bug RB9

edited March 2005 in General
Hi,

I store all my reports in .rtm files and load them at runtime like:

cClassName := 'TfrmRB_example'; // or (GetReportClassName)
cRepName := 'test.rtm';
lFormClass := TFormClass(GetClass('TfrmRB_example'));
lForm := lFormClass.Create(Application);
lReport := TrbReportForm(lForm).Report;
lReport.Template.FileName := ExtractFilePath(ParamStr(0)) + cRepName;
if fileexists(ExtractFilePath(ParamStr(0)) + cRepName) then
lReport.Template.LoadFromFile;
ppDesigner1.Report := lReport;
ppDesigner1.ShowModal;

When I try to put a dbBarcode on a report I get different access
violations when "GetPropRec" is called. (invalid pointer)

Seems to be the same bug when trying to rename a Sysvar component. Same
source, same error..

Any Idea for a workaround?.. (for barcode)

Any timeline for the next RB9 minor release? We are still waiting..

TIA
Ralf

Comments

This discussion has been closed.