|
How to register COM |
Top Previous Next |
|
novaPDF SDK includes a COM interface, INovaPdfOptions. The COM binary file is located in the Lib sub folder. The COM is first registered when installed with novaPDF SDK. If you want to register/unregister novaPDF COM manually, use the following commands from the command line:
Register regsvr32.exe "C:\Program Files\Softland\novaPDF SDK 5\Lib\novapi5.dll"
or, for x64 systems: regsvr32.exe "C:\Program Files\Softland\novaPDF SDK 5\Lib\x64\novapi5.dll"
Unregsiter regsvr32.exe /u "C:\Program Files\Softland\novaPDF SDK 5\Lib\novapi5.dll"
or, for x64 systems: regsvr32.exe /u "C:\Program Files\Softland\novaPDF SDK 5\Lib\x64\novapi5.dll"
You can also register the COM programmatically, from your application. See Hello World (network) sample for an example how to do it. This way you don't have to manually install your application on all computers on the network, you can install it on a central computer and access it from the other computers.
NovaPDF COM dll - novapi5.dll - This is the distributable version of COM. You will need to register this COM when you have an "Application License" |