Team Foundation Server 从 VB6 应用程序中删除图标
我将 TFS 与许多 VB6 应用程序一起使用,并且注意到,由于在签出 vbp 文件进行一些更改并签入后使用 TFS,vbp 文件中指定 IconForm 的行丢失了。似乎没有遗漏什么,但是必须进入每个项目并重新指定要使用的图标是非常烦人的。
我已成功复制此内容 - 加载项目并在 IDE 中检查我的 VBP 文件,然后检查项目用于图标的表单,检查项目的属性,图标现在设置为空。
有人遇到过这种情况吗?有解决办法吗?
I am using TFS with a lot of VB6 applications and have noticed that since using TFS after checking out the vbp file doing some changes and checking in, the line in the vbp file specifying the IconForm is missing. Nothing else seems to be missing but it is very annoying having to go into each project and re-specify the icon to use.
I have managed to replicate this - Load up project and in the IDE check out my VBP file, then check out the form that the project is using for the icon, check the properties of the project and the Icon is now set to nothing.
Has anyone encountered this? And is there a fix?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
奇怪的。你确定这不是VB6 IDE本身吗?也许现有的 IconForm 行不正确,并且在重新保存 VBP 时会默默地删除该行?它应该看起来像这样,并且表单实际上必须位于同名的项目中。
VBP 上的 VB6 文档非常简洁文件格式,但我认为
IconForm
是符号名称而不是文件名。Strange. Are you sure it isn't the VB6 IDE itself? Maybe the existing IconForm line was incorrect and it's silently removing the line when it resaves the VBP? It should look like this and the form must actually be in the project under the same name.
VB6 documentation is terse on the VBP file format but I think
IconForm
is the symbolic name rather than the filename.