Click here to Skip to main content
15,893,486 members
Articles / Desktop Programming / ATL

Internet Explorer Toolbar (Deskband) Tutorial

Rate me:
Please Sign up or sign in to vote.
4.94/5 (126 votes)
21 Aug 2001CPOL27 min read 3M   22.8K   451  
A tutorial on Using RBDeskband and CWindowImpl ATL Object Wizards to create an Internet Explorer(IE) Toolbar.
// MotleyFool.idl : IDL source for MotleyFool.dll
//

// This file will be processed by the MIDL tool to
// produce the type library (MotleyFool.tlb) and marshalling code.

import "oaidl.idl";
import "ocidl.idl";

	[
		object,
		uuid(6DEEE498-08CC-43F0-BCA0-DBB5A25C9501),
		dual,
		helpstring("IStockBar Interface"),
		pointer_default(unique)
	]
	interface IStockBar : IDispatch
	{
	};

[
	uuid(84C94803-B5EC-4491-B2BE-7B113E013B77),
	version(1.0),
	helpstring("MotleyFool 1.0 Type Library")
]
library MOTLEYFOOLLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");


	[
		uuid(A6790AA5-C6C7-4BCF-A46D-0FDAC4EA90EB),
		helpstring("StockBar Class")
	]
	coclass StockBar
	{
		[default] interface IStockBar;
	};
};

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
Web Developer
United States United States
Erik lives in Redmond, Washington. He works as a Senior Software Engineer specializing in C++, COM, ATL and the middle-tier and now .NET. When he isn't coding for work, he can be found trying to extend Internet Explorer with yet another Desk band or simplifying his development process with ATL Object Wizards.

He spends his free time snowboarding, mountain biking, and online gaming.

Comments and Discussions