How to Register New Accusoft DLLs in an ActiveX Project Without Rebuilding

Modified on Tue, Jan 28 at 6:22 PM

I want to register Accusoft's latest DLLs for my ActiveX project without Rebuilding. Is this possible?




Yes, if your project uses late binding. Projects that rely on early binding will typically require recompilation whenever the DLL's public interface changes.

Early BindingLate Binding
  • Occurs at compile time
  • Occurs at run time via IDispatch interface
  • Uses headers or #import directives to include DLL references
  • Allows you to call methods or access properties without needing compile-time knowledge of exact addresses
  • Requires recompilation if a new DLL version changes the public interface
  • Avoids recompilation when DLL is updated if the call to existing properties/methods remain compatible.


Helpful Articles:



Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article