Click here to Skip to main content
15,888,527 members
Articles / Desktop Programming / ATL

VS File Finder

Rate me:
Please Sign up or sign in to vote.
4.90/5 (39 votes)
8 May 20053 min read 223.6K   3.3K   37  
A Visual Studio add-in to help navigate around large projects.
// VSFileFinderCtrl.idl : type library source for ActiveX Control project.

// This file will be processed by the MIDL compiler tool to
// produce the type library (VSFileFinderCtrl.tlb) that will become a resource in
// VSFileFinderCtrl.ocx.

#include <olectl.h>
#include <idispids.h>

import "ocidl.idl";
import "oaidl.idl";
[ uuid(20FCAA11-72CE-43ED-923F-661646893C6A), version(1.0),
  helpfile("VSFileFinderCtrl.hlp"),
  helpstring("VSFileFinderCtrl ActiveX Control module"),
  control ]
library VSFileFinderCtrlLib
{
	importlib(STDOLE_TLB);

	//  Primary dispatch interface for CVSFileFinderCtrlCtrl

	[ uuid(A65A9F34-1852-4D8A-A537-D9F231477509),
	  helpstring("Dispatch interface for VSFileFinderCtrl Control")]
	dispinterface _DVSFileFinderCtrl
	{
		properties:
		methods:
		[id(1), helpstring("method SetInterface")] void SetInterface(IDispatch* pDispatch);
	};

	//  Event dispatch interface for CVSFileFinderCtrlCtrl

	[ uuid(F7D70BB9-72F3-4BED-921C-1EF437E24225),
	  helpstring("Event interface for VSFileFinderCtrl Control") ]
	dispinterface _DVSFileFinderCtrlEvents
	{
		properties:
			//  Event interface has no properties

		methods:
	};

	//  Class information for CVSFileFinderCtrlCtrl

	[ uuid(F45B6628-6873-43f1-A050-84574FBB1FAE),
	  helpstring("VSFileFinderCtrl Control"), control ]
	coclass VSFileFinderCtrl
	{
		[default] dispinterface _DVSFileFinderCtrl;
		[default, source] dispinterface _DVSFileFinderCtrlEvents;
	};

};

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


Written By
Web Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions