如何从.NET(C#)调用本机exe函数(Visual Basic 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可以看到该工作的唯一方法是 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
如果您可以修改 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.