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

Never-build package rbRIDE75.dpk needs to be recompiled

edited November 2004 in RAP
Helo!

Delphi 5, Report Builder 7.01

I needed to modify interface section of ppDrwCmd.pas file and since then I
cannot compile my project because there's no source for rbRIDE75 package in
the Report Builder's distributive.

Is there anything that I can do about it?

Thanks in advance
Konstantin Krivtsov.

Comments

  • edited November 2004

    Sorry, but you cannot modify the interface section of any units that are
    'used' by RAP.

    What are you trying to accomplish?


    ---
    Nard Moseley
    Digital Metaphors Corporation
    www.digital-metaphors.com



    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
  • edited November 2004
    Hi Nard,

    I was trying to add Value property to TppDrawVariable to make report's
    export to Excel more accurate.
    I can create a descendant classes to TppDrawVariable and TppVariable but
    then I'd have to convert all exisiting reports substituting TppVariable
    instances, and I was trying to avoid that.

    Thanks
    Konstantin.

  • edited November 2004

    1. Create a myDrawCommands.pas unit and define a descendant to
    TppDrawVariable - TMyDrawCommand.

    2. Modify the Implementation section of TppVariable to use your new
    TMyDrawCommand class.

    Example:

    implementation

    uses
    myDrawCommands;

    constructor TppVariable.Create(aOwner: TComponent);
    begin
    inherited Create(aOwner);

    DrawCommandClass := TmyDrawVariable;

    end;


    --
    Nard Moseley
    Digital Metaphors Corporation
    www.digital-metaphors.com



    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
  • edited November 2005
    is there a list of the units that are "used" by RAP?

  • edited November 2005

    Please configure your newsreader to post using your real name. Currently it
    posts with 'news.digital-metaphors.com' in the from.

    What are you trying to accomplish?



    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
This discussion has been closed.