Click here to Skip to main content
15,881,803 members
Articles / Desktop Programming / WTL

RSS Reader Plug-in for Internet Explorer

Rate me:
Please Sign up or sign in to vote.
5.00/5 (12 votes)
16 Jul 2007CPOL4 min read 317.2K   1.3K   32  
This is a toolbar for the Internet Explorer which shows information from RSS taken from the Internet.
/*
	Project		: RSS Reader plugin for Internet Explorer
	File Name	: RRPReflectionWindow.cpp
	Date		: 
	Purpose		: This class is the reflection window of the toolbar which 
				  receives all the  input window message and reflect all of
				  them to its child which is the actual toolbar.
	Note		: This is the best method of implementing IE toolbar.
				  (SEE Codeproject.com)
	Send comments 
	or Bugs to	: prafulla_t@users.sourceforge.net
*/

#include "stdafx.h"
#include "RRPReflectionWindow.h"

RRPReflectionWindow::~RRPReflectionWindow(void) {
	if (::IsWindow(m_hWnd))
		DestroyWindow();
}

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
India India
Quote : "Life is all about solving problems and enjoying their solutions !! "

Comments and Discussions