确定程序编译时使用的 VB 版本
如何确定程序(.ocx、.exe 或 .dll)是用哪个版本的 Visual Basic 编译的?
(我指的是 Visual Basic 6 及之前版本,而不是 .net)。
How do you determine which version of visual basic a program (.ocx, .exe, or .dll) was compiled with?
(I'm referring to visual basic 6 and before, not .net).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常可以根据程序的依赖关系来判断旧 VB 程序使用哪个版本进行编译。
MSVBVM60.dll 用于 VB6 编译程序
MSVBVM50.dll 用于 VB5
VB40032.dll 用于 VB4 32 位
VB40016.dll 用于VB4 16 位。
You can often tell what version was used to compile an old VB program based on the dependencies for the program.
MSVBVM60.dll for VB6 compiled programs
MSVBVM50.dll for VB5
VB40032.dll for VB4 32bit
VB40016.dll for VB4 16bit.