如何从.NET(C#)调用本机exe函数(Visual Basic 6.0)?

发布于 2024-09-17 20:20:26 字数 134 浏览 6 评论 0原文

我们有一个由 Visual Basic 6.0 生成的 exe 文件(非托管 exe)和一个用 C# 编写的 .NET .exe。

如何从 CLR .exe 调用非托管 exe (Visual Basic) 中的函数?

谢谢。

We have an exe file produced by visual basic 6.0 (unmanaged exe) and a .NET .exe written with C#.

How can I call a function in unmanaged exe (visual basic) from CLR .exe?

Thanks.

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

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

发布评论

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

评论(2

绝不服输 2024-09-24 20:20:26

我可以看到该工作的唯一方法是 VB6 可执行文件是否具有 COM 接口,在这种情况下,您应该能够从 .Net 应用程序调用它。

本文可能会有所帮助:如何使用 Visual Basic 创建 DCOM 客户端/服务器应用程序

The only way I can see that working is if the VB6 executable has a COM interface, in which case you should be able to call it from a .Net app.

This article might be helpful: How To Create a DCOM Client/Server Application by Using Visual Basic

得不到的就毁灭 2024-09-24 20:20:26

如果您可以修改 VB6 应用程序,那么最明显的方法是通过命令行启动 VB6 应用程序,通过命令行传递参数并通过退出代码或控制台输出获取结果。应修改 vb6 应用程序以相应地处理参数。

If you can modify the VB6 application, then the most obvious way is to start VB6 app via command line, pass parameters via command line and get result via exit code or via console output. The vb6 application should be modified to handle the parameters accordingly.

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