Ok, well if its a COM DLL with a managed .NET API, you need to make sure that you have a means for installing and registering the COM DLL on the PC. The .NET API can just be copied along with your application.
There are various ways of registering DLLs, there's a command line program regsvr32 which is a bit ugly but functional. Here is an article describing how to register COM DLLs from .NET code.
Does the Vandyke software come with an installer that you can just run from your installer? Do they provide a means of running the installer in a silent mode?
发布评论
评论(1)
好吧,如果它是一个带有托管 .NET API 的 COM DLL,您需要确保您有一种在 PC 上安装和注册 COM DLL 的方法。 .NET API 可以与您的应用程序一起复制。
注册 DLL 的方法有很多种,有一个命令行程序 regsvr32,它有点丑陋,但很实用。这是一篇文章 描述如何从 .NET 代码注册 COM DLL。
Vandyke 软件是否附带一个可以直接从安装程序运行的安装程序?他们是否提供了以静默模式运行安装程序的方法?
Ok, well if its a COM DLL with a managed .NET API, you need to make sure that you have a means for installing and registering the COM DLL on the PC. The .NET API can just be copied along with your application.
There are various ways of registering DLLs, there's a command line program regsvr32 which is a bit ugly but functional. Here is an article describing how to register COM DLLs from .NET code.
Does the Vandyke software come with an installer that you can just run from your installer? Do they provide a means of running the installer in a silent mode?