Link to home
Start Free TrialLog in
Avatar of trilian
trilianFlag for United States of America

asked on

How do I install multiple packages in Delphi 6 that contain duplicate components?

I am currently trying to install the following components into a Delphi 2006 project:

TMS advGridPack
TMS advPageControl
TMS advPanel

However, when it comes time to install the last one (advPanel), I get an error that Delphi cannot install as "It contains unit 'PictureContainerm,' which is also contained in package 'GridPackd2006'.

How can I install all of the packages that I need in order to get this existing piece of code to run without any duplicate units being installed?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of thiagoblimeira
thiagoblimeira
Flag of Brazil image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of trilian

ASKER

How would I go about grouping all of the different packages into one large one?
Create a new Package
Take all the source files to the same folder
Right click the package at delphi's project manager and choose add
Select all the source files at once and click open
Compile the package and install

Let me know if you have any trouble


Avatar of trilian

ASKER

I just used Remove File from the package menu on the toolbar, but the first part ended up working well. Thanks!