I've recently (today) purchased two components from yourselves; THTMLForm and TAdvAlertWindow. However, I'm having difficultly installing the two components side by side.
Depending on which component I install last, I get a message from Delphi complaining;
"Cannot Load package X because it contains unit Y that is also contained in package Z".
How do I get around this issue? I'm assuming I have to merge the packages in someway, or I'm missing a trick on how to install them.
Thanks for any quick responses.
In Delphi , a unit can be used in one package only. This error happens when you try to install two or more packages that use the same unit. To solve this, remove the unit(s) that is/are used in multiple packages from the package files (choose Remove from Project Manager). Then, from the IDE create a new package and add the unit(s) to this new package and compile this package. Then, in the packages where the unit was used, add a reference in the Requires list of the package to this new compiled package (.DCP file in Delphi / .BPI file in C++Builder) that contains the unit(s).
This
is also explained at : http://www.tmssoftware.com/site/install.asp