• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Adding File Version info to a vc++ program

Martin

Lifer
I'm writing a program and I need add the normal version information (that one that shows up when you right click on the EXE and go to properties), but I can't find any useful info on how to do it.

This is for an MFC app in VC++, not .NET or anything. Any help would be appreciated.

edit: I tried changing the version info under project>settigns>link>version, but that doesn't do anything.
 
If you have used the VS wizard to create the project, look in the workspace pane for the ResourceView Tab.

Select the tab and find the Vesrion folder.
 
That works when I create a sample project, but for some reason it doesn't work on my coworker's existing project. At least we know where to look now though, thanks for the help.
 
Look in the sample dummy RC file (text view) and see where the version information section is layed out.

Then look for the same section in RC file on the problem project.
It may not exist. If it does not, the paste that section from the dummy project.
If it does exist; look for what the differences may be and adjust accordingly (AFTER BACKING UP)
 
Originally posted by: Templeton
All you should need to do is add a new Version Resource to your project and edit appropriately.

when in the IDE, you should also be able to right click on the resource file (problem project) and have a wizard come up that will prompt you for Version

tested using 6.0

 
Back
Top