在 VB.Net 中运行 WMV 的问题
我刚刚完成了程序的构建,但我注意到 vb.net (2010) 创建了两个 dll 文件( AxInterop.WMPLib.dll 和 Interop.WMPLib.dll ),当我尝试运行应用程序而没有这两个文件在同样的目录,它立即崩溃了!
有没有办法让 WMV 组件运行而不使用任何额外的库,这样我就可以只分发 exe 文件?!!!
谢谢
I just finished building my program, but I noticed that vb.net (2010) creates two dll files ( AxInterop.WMPLib.dll & Interop.WMPLib.dll ), when I tried to run the application without having those two files in the same directory, it crashed right away!!!
Is there a way, to have the WMV components running without using any additional libraries, so I can distribute the exe file only?!!!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了一个名为 smartassemble 的程序来保护我的程序的源代码。
程序本身询问我是否要合并依赖项(资源),所以我选择了两个 dll 文件,然后它生成了一个可执行文件,根本没有 dll 文件。
I used a program called smartassembly, to protect the source of my program.
The program itself asked me if I want to merge dependencies (resources), so I picked the two dll files, and it me out one executable file, with no dll files at all.