English 中文(简体)
我可以使用 *.tlb 文件吗? 不使用 Regam 在电脑上注册
原标题:Can I use a *.tlb file without using Regasm to register it on the computer

我们正在支持一个老化的 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 即可 。

问题回答

暂无回答




相关问题
Manually implementing high performance algorithms in .NET

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, ...

Anyone feel like passing it forward?

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. ...

How do I compare two decimals to 10 decimal places?

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....

Exception practices when creating a SynchronizationContext?

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 ...

Show running instance in single instance application

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("...

How to combine DataTrigger and EventTrigger?

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 ...

热门标签