vc中如何更改项目名称++ 2008(vs2008)
我创建了一个 vc++ MDI 应用程序。现在我想重命名它,以便应用程序主窗口上的名称是新名称。
I have created a vc++ MDI application. Now i want to rename it so that the name on the application main window is the new name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个过程有点肮脏,但我不得不这样做很多次......
关闭解决方案,让 VS2008 打开。
首先,您可能需要备份当前解决方案文件夹,除非您使用版本控制。
现在使用编辑->查找和替换 ->在文件中查找以递归方式在解决方案文件夹中搜索当前应用程序名称。
打开每个实例,将其更改为新名称并保存文件。
关闭VS2008。
在解决方案文件夹中,将 *.vsproj 和项目文件夹重命名为新名称。
重新打开VS2008和解决方案,并检查一切正常。
Bit of a filthy hacky process this, but I've had to do it many a time...
Close the solution, leaving VS2008 open.
First you might want to make a backup of the current solution folder, unless you're using version control.
Now use Edit -> Find&Replace -> Find In Files to search for your current application name, in the solution folder recursively.
Open each occurrence, change it to the new name and save the file.
Close VS2008.
In the solution folder rename the *.vsproj and project folder to the new name.
Reopen VS2008 and the solution, and check it all works fine.
在资源文件(.rc 和 .rc2)中对 IDR_MAINFRAME 执行 grep。如果找到字符串表条目,请使用您的应用程序名称对其进行修改。如果找不到,请添加字符串表条目。
Do a grep for IDR_MAINFRAME in your resource files (.rc and .rc2). If you find a string table entry, modify it with your application name. If you don't find one, add a string table entry.