|
ABCpdf 6 is a new version completely independent of the old. It
incorporates the ABCpdf2, ABCpdf3 and ABCpdf4 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.ABCpdf5;
[Visual Basic]
Imports WebSupergoo.ABCpdf5
with...
[C#]
using WebSupergoo.ABCpdf6;
[Visual Basic]
Imports WebSupergoo.ABCpdf6
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.
|