Click here to Skip to main content
15,881,852 members
Articles / Desktop Programming / MFC

CURLLinkButton - Customizable Hyperlink Control

Rate me:
Please Sign up or sign in to vote.
4.83/5 (21 votes)
19 Jul 2004CPOL2 min read 124K   5K   79  
A CButton-derived hyperlink control that contains a built-in ToolTip
// URLLink.h : main header file for the URLLINK application
//

#if !defined(AFX_URLLINK_H__A1DC39A2_EC62_4964_9517_3FA9EE54C9ED__INCLUDED_)
#define AFX_URLLINK_H__A1DC39A2_EC62_4964_9517_3FA9EE54C9ED__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CURLLinkApp:
// See URLLink.cpp for the implementation of this class
//

class CURLLinkApp : public CWinApp
{
public:
	CURLLinkApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CURLLinkApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CURLLinkApp)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_URLLINK_H__A1DC39A2_EC62_4964_9517_3FA9EE54C9ED__INCLUDED_)

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
Chief Technology Officer
Vietnam Vietnam
Nguyen Duc Thanh is a software developer from Vietnam, a lovely and peaceful country.
He graduated from Faculty of Technology and is doing a master degree at College of Technology, Vietnam National University, Hanoi.
He's interested in image processing, cloud computing, enterprise software development, website application developement.

Comments and Discussions