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

What happened to the ppIDE unit?

edited February 2006 in General
I have a test app written before I upgraded to RB 9. The test app uses
the ppIDE unit. Now when I try to compile the project under Delph 7 I
get the error "File not found: ppIDE.dcu".

What do I need to change to get this working again?

--
.Bill.

Comments

  • edited February 2006
    Hi Bill,

    The design workspace was drastically changed for RB 9. The ppIDE file was
    removed from the product. Try simply removing it from your uses clause and
    rebuilding your app. This may fix the problem. Take a look at the
    following article on some of the changes made in RB 9.

    ---------------------------------------
    Article: RB 9 Architecture Changes
    ---------------------------------------

    ReportBuilder 9 includes architecture changes to more cleanly separate
    Designer code from Report code. The code related to component popup menus
    and design controls has been broken out into separate classes.

    For an example, check out RBuilder\Demos\RCL.


    The myChkBox.pas unit contains the component classes....


    TppCustomComponent

    |
    |

    TMyCustomCheckBox

    |
    |-- TmyCheckBox
    |
    |-- TmyDBCheckBox


    The myChkBoxDesign.pas unit contains popup menu and design control classes.
    These are compiled into a separate package.


    A. Popup Menu classes....

    TppComponentPopupMenu

    |
    |

    TmyCustomCheckBoxPopupMenu

    |
    |-- TmyCheckBoxPopupMenu
    |
    |-- TmyDBCheckBoxPopupMenu


    B. Design Control classes.....



    TmyCustomCheckBoxControl

    |
    |

    TmyCustomCheckBoxPopupMenu

    |
    |-- TmyCheckBoxControl
    |
    |-- TmyDBCheckBoxControl


    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.