Note to all BCB users
Hello all,
There is a problem with BCB in the current FR3.01 (some class members may be NULL, or memory errors or invalid pointer errors). If you have FR3 Pro you may fix the frxClass.pas file and recompile the FR3 packages. Fix is:
(add "packed" word). Also change
There is a problem with BCB in the current FR3.01 (some class members may be NULL, or memory errors or invalid pointer errors). If you have FR3 Pro you may fix the frxClass.pas file and recompile the FR3 packages. Fix is:
? TfrxRect = packed record
? ? Left, Top, Right, Bottom: Extended;
? end;
? TfrxPoint = packed record
? ? X, Y: Extended;
? end;
(add "packed" word). Also change
 TfrxView = class(TfrxReportComponent)
 protected
  FX: Integer;
  FY: Integer;
  FX1: Integer;
  FY1: Integer;
  FDX: Integer;
  FDY: Integer;
  FFrameWidth: Integer;
  FScaleX: Extended;
  FScaleY: Extended;
  FOffsetX: Extended;
  FOffsetY: Extended;
(orinally was:
 TfrxView = class(TfrxReportComponent)
 protected
  FX, FY, FX1, FY1, FDX, FDY, FFrameWidth: Integer;
  FScaleX, FScaleY, FOffsetX, FOffsetY: Extended;
)