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?
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.
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.
Comments
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
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com