vote up 4 vote down star
1

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).

flag

61% accept rate

4 Answers

vote up 1 vote down check

I just ran into the same problem. Starting with Rob's answer, I developed the following function.

bool GetProductAndVersion(CStringA & strProductName, CStringA & strProductVersion)
{
    // load and lock the version resource
    HRSRC hRsrc = ::FindResource(NULL, MAKEINTRESOURCE(VS_VERSION_INFO), RT_VERSION);
    HGLOBAL hGlobal = ::LoadResource(NULL, hRsrc);
    LPVOID pVersionResource = ::LockResource(hGlobal);
    if (pVersionResource == NULL)
    {
    	TRACE("Can't obtain version resource\n");
    	return false;
    }

    // get the name and version strings
    LPVOID pvProductName = NULL;
    unsigned int iProductNameLen = 0;
    LPVOID pvProductVersion = NULL;
    unsigned int iProductVersionLen = 0;

    // replace "040904e4" with the language ID of your resources
    if (!VerQueryValue(pVersionResource, _T("\\StringFileInfo\\040904e4\\ProductName"), &pvProductName, &iProductNameLen) ||
    	!VerQueryValue(pVersionResource, _T("\\StringFileInfo\\040904e4\\ProductVersion"), &pvProductVersion, &iProductVersionLen))
    {
    	TRACE("Can't obtain ProductName and ProductVersion from resources\n");
    	return false;
    }

    strProductName.SetString((LPCSTR)pvProductName, iProductNameLen);
    strProductVersion.SetString((LPCSTR)pvProductVersion, iProductVersionLen);

    return true;
}

P.S. No need to call FreeResource, apparently it's a leftover from 16-bit Windows.

link|flag
vote up 2 vote down

Something like might get you started, perhaps:

TCHAR moduleName[MAX_PATH+1];
(void)GetModuleFileName(AfxGetInstanceHandle(), moduleName, MAX_PATH);
DWORD dummyZero;
DWORD versionSize = GetFileVersionInfoSize(moduleName, &dummyZero);
if(versionSize == 0)
{
	return NULL;
}
void* pVersion = malloc(versionSize);
if(pVersion == NULL)
{
	return NULL;
}
if(!GetFileVersionInfo(moduleName, NULL, versionSize, pVersion))
{
	free(pVersion);
	return NULL;
}

UINT length;
VS_FIXEDFILEINFO* pFixInfo;
VERIFY(VerQueryValue(pVersionInfo, const_cast<LPTSTR>("\\"), (LPVOID*)&pFixInfo, &length));
link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

Something like this will give you raw access to the resource data and get you started:

HRSRC res = ::FindResource(NULL, MAKEINTRESOURCE(MY_VERSION_ID), RT_VERSION);
DWORD size = ::SizeofResource(NULL, res);
HGLOBAL mem = ::LoadResource(NULL, res);
LPVOID raw_data = ::LockResource(mem);
...
::FreeResource(mem);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.