|
ABCpdf 7 is a new version completely independent of the old. It
incorporates the ABCpdf2, ABCpdf3, ABCpdf4, ABCpdf5 and ABCpdf6
namespaces so that you can upgrade with minimal changes to your
code. When you want to take advantage of the new features simply
reference the new name.
Simply replace...
[C#]
using WebSupergoo.ABCpdf6;
[Visual Basic]
Imports WebSupergoo.ABCpdf6
with...
[C#]
using WebSupergoo.ABCpdf7;
[Visual Basic]
Imports WebSupergoo.ABCpdf7
Unless you have side-by-side versioning (available in Windows
XP) you will not be able to have multiple versions of ABCpdf
installed in the GAC. In this case you should install the relevant
assemblies in the bin directories of your application.
|