Amarylis @ Sat May 05, 2012 4:29 pm wrote:
I'm trying to change the version, file description, copyright, etc. information of my program using Visual C++ Studios 2010 Express, and I can't seem to find out where I can find these things. Anyone so happen to be able to point me to the right place?
For that sort of stuff resource files must be used.
Visual C++ Express doesn't provide a resource editor, however you can still include resource files made some other way.
Here's a template: http://codepad.org/9YCbpoc8
Customize it for your project, then save it as an .rc file. In Visual Studio, right-click "Resource files", then choose
"add existing item" and add the .rc file.
EDIT: providing template