C# Com 枚举和 VB6

发布于 2024-12-04 19:10:46 字数 736 浏览 0 评论 0原文

您好,我创建了 C# Exe Com Server 并从 VB6 应用程序引用它。 问题在于,所有枚举在 vb 应用程序中都以“奇怪的名称”公开:EnumName_EnumItem,而从 VB6 代码中引用为 EnumName.EnumItem。

VB6应用程序代码无法修改。 想知道我看到我可以通过更改 tlb 的 idl 提取来更改这个定义,但未能准确理解它是如何完成的,以及完成这项工作的工具是什么。

有什么建议如何尽可能轻松地设置枚举?

代码:

 public enum enResultCode : uint
{
    enRCNone = 0x00000000,
    enRCNotFound = 0x00000001,
    enRCFoundOnServer = 0x00000002,
    enRCFoundOnLocal = 0x00000003,
    enRCDatabaseError = 0x00000004,
    enRCAborted = 0xFFFFFFFF,
    enRCServerError = 0xFFFFFFFE,
    enRCLocalError = 0xFFFFFFFD
}

在 VB6 中显示为:

在此处输入图像描述

而不是:

enResultCode.EnumItemName

Hi I created C# Exe Com Server and refer it from VB6 application.
The problem is that all the enums are exposed with "strange name" in the vb app: EnumName_EnumeItem, while reffered from then VB6 code as EnumName.EnumItem.

The VB6 application code cannot be modified.
Wondering around I saw I can change this definitions by changing the idl extract fro the tlb, but failed to understand exactly how it's done, and what are the tools for the job.

Any suggestions how to set the enums easily as possible?

The code:

 public enum enResultCode : uint
{
    enRCNone = 0x00000000,
    enRCNotFound = 0x00000001,
    enRCFoundOnServer = 0x00000002,
    enRCFoundOnLocal = 0x00000003,
    enRCDatabaseError = 0x00000004,
    enRCAborted = 0xFFFFFFFF,
    enRCServerError = 0xFFFFFFFE,
    enRCLocalError = 0xFFFFFFFD
}

Shown in VB6 as:

enter image description here

instead of:

enResultCode.EnumItemName

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不奢求什么 2024-12-11 19:10:46

我认为你是对的,唯一的方法就是自己修改 IDL。我可以告诉您一些关于它是如何完成的...

  1. 您运行 tlbexp.exe 从 C# 程序集中创建 tlb。
  2. 您运行 oleview.exe 打开该 tlb 并检查 IDL。您可以将该 IDL 保存到文件中或复制/粘贴它。
  3. 您可以编辑 IDL 以为其指定所需的枚举项名称。
  4. 您运行 midl.exe 从修改后的 IDL 生成 tlb。

那应该足够了。抱歉,我无法为您提供所有正确的命令行开关,但我现在不在 Windows 计算机上。

I think you're correct the only way to do this is to modify the IDL yourself. I can tell you a little about how it's done...

  1. You run tlbexp.exe to create the tlb from your C# assembly.
  2. You run oleview.exe to open that tlb and inspect the IDL. You can save that IDL out to a file or copy/paste it.
  3. You edit the IDL to give it the enum item names you want.
  4. You run midl.exe to generate a tlb from your modified IDL.

That should be enough. Sorry I can't give you all the correct command line switches but I'm not on a Windows machine right now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文