为什么 VB6 .frm 文件会充满二进制文件?
我正在整理 VB6 项目中的一些 .frm
文件。我发现其中一些充满了二进制数据。显然,这些无法编译,我发现它们没有被项目引用,而只是位于项目文件夹中,什么也不做。
为什么 .frm
文件最终会包含二进制数据?
注意:这些是定义的 .frm
文件。我知道 .frx
文件包含二进制文件。
I am sorting out some .frm
files in a VB6 project. I have found some of them are full of binary data. Clearly these wouldn't compile and I discovered that they are not being referenced by the project but are just sitting in the project folder doing nothing.
Why would .frm
files end up having binary data in them?
Note: These are definitley .frm
files. I know that the .frx
files contain binary.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VB3/VB4 使用二进制形式/代码文件。要么就是这样,要么就是他们腐败了。
您也许可以确认修改日期。
VB3/VB4 used a binary form/code file. Either that or they're just corrupt.
You can probably confirm with the modified date.
几年前,当一些 frm 文件损坏时,我就经历过这种情况(这种情况发生在一个实时项目中,IDE 无法加载文件) - 在写字板中打开它们会显示所有不可打印的字符。
我想说,如果它们没有被引用,那么它们应该可以安全地删除。
I have experienced this a few years ago when some of the frm files became corrupt (this happened in a live project and the IDE failed to load the files) - Opening them in wordpad showed all non-printable characters.
I would say that if they are not being referenced then they should be safe to remove.