我有一个.Net项目,它有以下dlls:
)
我需要注册OCX来运行我的项目。有人能帮我找到OCX文件的名字吗?
谢谢
发布于 2011-11-09 17:43:01
这些是上个世纪的VB6控件。您需要找到一台仍然拥有它们的机器,请查看c:\windows\system32 32。..ocx/..dll文件名应该相当接近。我知道的是comctl32.ocx、mscal.ocx、dbgrid32.ocx和msflxgrd.ocx。获得水晶报告应该是困难的,它从来不是VB6的一个组成部分,需要一堆DLL。这些控件也有授权验证,您将无法在设计模式中使用它们。这需要VS6或VB6许可证。您只能在拍卖网站(如VS6 )获得eBay许可证,VB6可以通过MSDN订阅获得。
如果你觉得这个软件很难维护,那么你是正确的。
发布于 2011-11-09 17:06:55
你试过REGSVR32吗?
To register a module, you must provide a binary name.
Usage: regsvr32 [/u] [/s] [/n] [/i[:cmdline]] dllname
/u - Unregister server
/s - Silent; display no message boxes
/i - Call DllInstall passing it an optional [cmdline]; when used with /u calls dll uninstall
/n - do not call DllRegisterServer; this option must be used with /ihttps://stackoverflow.com/questions/8068595
复制相似问题