I have a version resource in my resources in a C++ project which contains version number, copyright and build details. Is there an easy way to access this at run-time to populate my help/about dialog as I am currently maintaining seperate const values of this information. Ideally, the solution should work for Windows/CE mobile and earlier versions of Visual C++ (6.0 upwards).
|
1
|
|
|
|
|
|
I just ran into the same problem. Starting with Rob's answer, I developed the following function.
P.S. No need to call FreeResource, apparently it's a leftover from 16-bit Windows. |
||
|
|
|
|
Something like might get you started, perhaps:
|
||
|
|
|
|
Ok, a bit more googleing found the following on CodeGuru. Basically this approach uses the CFileVersionInfo object to get on any given file. It should be interesting to see if it works on the currently running .EXE file and on Windows CE. |
||
|
|
|
|
Something like this will give you raw access to the resource data and get you started:
|
||
|
|
