getting build number
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Is it possible in Microsoft Visual C++ to get the build number of an application (e.g. to display it in the About dialog) Best regards, Peter de Hon
Look at documentation on GetFileVersionInfo(), GetFileVersionInfoSize() and VerQueryValue() (to retrieve a VS_FIXEDFILEINFO structure). I never did it to retrieve the build number, but I suppose you have to find out which are the corresponding bits in the FileVersion or in the ProductVersion. Hope this helps, Paolo.