Click here to Skip to main content
15,898,222 members
Articles / Programming Languages / C#

VS SDK/VS Package Find Item in Solution Explorer Window

Rate me:
Please Sign up or sign in to vote.
4.47/5 (7 votes)
20 Jan 2010CPOL8 min read 43.9K   435   13  
Visual Studio Integration Package Menu command. Find Item by using a Regular Expression in Solution Explorer window.
// guids.h: definitions of GUIDs/IIDs/CLSIDs used in this VsPackage

/*
Do not use #pragma once, as this file needs to be included twice.  Once to declare the externs
for the GUIDs, and again right after including initguid.h to actually define the GUIDs.
*/



// package guid
// { 9103aa97-1d4e-406e-af31-f636ddab53b5 }
#define guidVsPkgFindInSolutionExplorerPkg { 0x9103AA97, 0x1D4E, 0x406E, { 0xAF, 0x31, 0xF6, 0x36, 0xDD, 0xAB, 0x53, 0xB5 } }
#ifdef DEFINE_GUID
DEFINE_GUID(CLSID_VsPkgFindInSolutionExplorer,
0x9103AA97, 0x1D4E, 0x406E, 0xAF, 0x31, 0xF6, 0x36, 0xDD, 0xAB, 0x53, 0xB5 );
#endif

// Command set guid for our commands (used with IOleCommandTarget)
// { a77d8b0f-9a97-4175-9284-dfcce4277bb7 }
#define guidVsPkgFindInSolutionExplorerCmdSet { 0xA77D8B0F, 0x9A97, 0x4175, { 0x92, 0x84, 0xDF, 0xCC, 0xE4, 0x27, 0x7B, 0xB7 } }
#ifdef DEFINE_GUID
DEFINE_GUID(CLSID_VsPkgFindInSolutionExplorerCmdSet, 
0xA77D8B0F, 0x9A97, 0x4175, 0x92, 0x84, 0xDF, 0xCC, 0xE4, 0x27, 0x7B, 0xB7 );
#endif


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Database Developer Freelancer
Ukraine Ukraine
MS SQL Server Database Developer with 7+ years experience

Technologies/languages: Business Intelligence, SQL, MDX, VBA, SQL Server, Analysis Services (SSAS), Reporting services (SSRS), Integration Services (SSIS), DataWarehouse.
Also: economic background.

Feel free to contact me for rates and details.

Comments and Discussions