Click here to Skip to main content
Click here to Skip to main content

VS Service Pack

By , 31 Mar 2001
 

Introduction

This is a simple add-in that allows you to quickly and easily find out which service pack you have installed for Visual Studio.

Creating the Add-in

Use the Visual C++ Add-in Wizard (specified in MDSN January 2001 in "Creating Add-ins Using Visual C++") to create an add-in:

  1. File --> New
  2. Projects
  3. Developer Studio Add-In Wizard
  4. type project name (VSSPVer) and click OK
  5. Let everything stay checked and click OK.
  6. Modify the default method name (both in interface and associated C++ class, definition and declaration) replacing it with the new name OnSPVersion.

The implementation looks like this:

STDMETHODIMP CCommands::OnSPVersion() 
{
    AFX_MANAGE_STATE(AfxGetStaticModuleState());

    // TODO: Replace this with the actual code to execute this command
    //  Use m_pApplication to access the Developer Studio Application object,
    //  and VERIFY_OK to see error strings in DEBUG builds of your add-in
    //  (see stdafx.h)

    HKEY    hkVSSPVer    = NULL;
    LONG    lRetVal        = NO_ERROR;
    CString    strVersion;

    lRetVal = 
        ::RegOpenKeyEx
        (
            HKEY_LOCAL_MACHINE, 
            _T("SOFTWARE\\Microsoft\\VisualStudio\\6.0\\ServicePacks"), 
            0L, 
            KEY_READ, 
            &hkVSSPVer
        );
    if(lRetVal == NO_ERROR)
    {
        DWORD dwType;
        lRetVal = RegQueryValueEx(hkVSSPVer, _T("latest"), NULL, &dwType, NULL, NULL);
        if((lRetVal == NO_ERROR) && (dwType == REG_DWORD))
        {
            DWORD dwVSSPVersion = 0;
            DWORD dwDataLen        = sizeof(DWORD);

            lRetVal = ::RegQueryValueEx(hkVSSPVer, _T("latest"), NULL, 
                                        &dwType, (LPBYTE)&dwVSSPVersion, &dwDataLen);
            if(lRetVal == NO_ERROR)
            {
                strVersion.Format(IDS_VSSPVER_VERSION, dwVSSPVersion);
            }
            else
            {
                strVersion.LoadString(IDS_VSSPVER_UNKNOWN);
            }
        }
        else
        {
            strVersion.LoadString(IDS_VSSPVER_UNKNOWN);
        }

        RegCloseKey(hkVSSPVer);
    }
    else
    {
        strVersion.LoadString(IDS_VSSPVER_UNKNOWN);
    }

    VERIFY_OK(m_pApplication->EnableModeless(VARIANT_FALSE));
    ::MessageBox(NULL, strVersion, _T("Microsoft Visual Studio"), 
                 MB_OK | MB_ICONINFORMATION);
    VERIFY_OK(m_pApplication->EnableModeless(VARIANT_TRUE));

    return S_OK;
}

That's it. Compile, register the DLL using regsvr32 and that's it. It will appear into menu Tools/Customize/Add-ins and macro files with the name "VSSPVer Developer Studio Add-in".

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Sardaukar
Web Developer
Romania Romania
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralWon't work with VS6 SP3memberAnonymous26-Mar-01 11:44 
GeneralRe: Won't work with VS6 SP3memberAnonymous14-May-01 1:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 1 Apr 2001
Article Copyright 2001 by Sardaukar
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid