我们正在支持一个老化的 VB6 系统, 我们已经在.Net 中为它写了新代码, 将代码放入组件, 然后导出 *.tlb 文件, 用于 VB6 代码库 。
我的问题是,在每台我想运行密码的电脑上, 我是否必须使用Regam来注册类型的图书馆?
我问是因为随着计算机断裂,新计算机被添加等等,很难追踪图书馆类型设施。 此外,如果我们更新.Net代码,我们需要绕过每个计算机,重新登记类型图书馆。
简而言之,能否从 VB6 运行.Net 代码而不需在代码运行的每台计算机上注册类型库?
谢谢
我们正在支持一个老化的 VB6 系统, 我们已经在.Net 中为它写了新代码, 将代码放入组件, 然后导出 *.tlb 文件, 用于 VB6 代码库 。
我的问题是,在每台我想运行密码的电脑上, 我是否必须使用Regam来注册类型的图书馆?
我问是因为随着计算机断裂,新计算机被添加等等,很难追踪图书馆类型设施。 此外,如果我们更新.Net代码,我们需要绕过每个计算机,重新登记类型图书馆。
简而言之,能否从 VB6 运行.Net 代码而不需在代码运行的每台计算机上注册类型库?
谢谢
Regasm.exe 仅在您使用 / tlb: filename.tlb
命令行选项运行时创建类型库。 然后您在 VB6 工程中用此选项使用工程+ 引用, 浏览按钮来选择. tlb 文件。 运行 Tlbex. exe 是获取它, 减去注册的另一种方法。 您应该选择在 IDE 中选择的“ 输入 COM interop ” 选项。 但是, 您必须运行 VS 升级, 以便它能够写入注册。 右键单击快捷键并选择“ 作为管理员运行 ” 。
在 VB6 列表中出现它是一个小的方便, 但很难获得。 由 Regasm.exe 调用的标准.NET 注册代码没有写入所需的“ 可编程” 密钥, 以使 VB6 自动将组件添加到列表中。 您必须写入由撰写丢失密钥的 [ComRegisterFunction] 属性设置的自定义注册功能。 如果您可以单击浏览, 则不值得 。
请注意您确实在用户机上注册了类型库 。 只有 VB6 编译者才需要该类型库 。 您必须注册[ 可视 类, 安装项目很简单 。 只要将 DLL 的注册属性设置为 vsdrpCOM 即可 。
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....
I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...
I ve got some code which sets up a datacontext. Often enough, the datacontext should be set to some underlying data collection, such as an ObservableCollection - but occasionally I d like to set it ...
I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...
NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...