Note to all BCB users

edited September 2004 in FastReport 3.0
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:
? 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;
)

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.