Click here to Skip to main content
Click here to Skip to main content

A Static Hyperlink control

By , 26 Dec 2002
 

Introduction

This article describes a simple CStatic derived Hyperlink control, which can be used in your project to link to any URL such as your company's website or EMail. In addition to that, this control can fire an event  to the parent dialog, it can be used to popup another dialog, or whatever else you want to do.

This controls features include :-

  1. Link to the URL  and EMails ,and can be link in to another child dialog
  2. Customize the colors of link, visited and hover (if you do not specify, they use the standard style)
  3. Enable/disable the Tooltip, and customize the back-color and text-color of the tool-tip

Using the code

For using this class in your project, you have to do :-

  1. Add MyHyperlink.cpp and MyHyperlink.h to the project.
  2. Include MyHyperlink.h in the header file where the controls are defined
  3. Create (or edit) a member variable for each button you want to customize as CMyHyperlink. If the Class Wizard doesn't show the CMyHyperlink type, select CStatic and then edit the code manually.

In the demo project, m_Static1, m_Static2, m_Static3 are the CMyHyperlink controls :-

//Set the target URL 
m_Static1.SetLinkUrl("www.codeproject.com");
//Enable showing the Tooltip
m_Static1.ActiveToolTip(1);
//Set the Tooltiptext
m_Static1.SetTootTipText("Click Here to go Codeproject");
//Set the tooltip Background Color
m_Static1.SetToolTipBgColor(RGB(0, 0, 0));
//Set the Tooltip Text Color
m_Static1.SetToolTipTextColor(RGB(0, 255, 0));

// Change the default Linktext, HoverText, Visited Colors 
// if you don't specify the colors the control will use the 
//defaults..

m_Static1.SetLinkColor(RGB(255, 0, 0)); 
m_Static1.SetHoverColor(RGB(0, 0, 255));
m_Static1.SetVisitedColor(RGB(0, 13, 0));

m_Static2.SetLinkUrl("mailto:renjith_sree@hotmail.com");
m_Static2.ActiveToolTip(1);
m_Static2.SetTootTipText("Click here to Email Me..");

//The SetFireChild(1) method will enable the 
//event firing to the parent dialog
m_Static3.SetFireChild(1);
m_Static3.ActiveToolTip(1);
m_Static3.SetTootTipText("Click Here to Fire An event to parent");

For trapping the event from the CMyHyperlink control you must trap the message in your dialog by adding the ON_MESSAGE(_HYPERLINK_EVENT,OnChildFire) in the MESSAGE MAP of the dialog, the definition of the function is like

void CControlContainerDlg::OnChildFire(WPARAM wparam, LPARAM lparam)           
{
    //...
}

The WPARAM contains the ID of the control from where the Event coming from.

Points of Interest

During the development, I faced a problem to get the standard windows  hand cursor when the mouse is over the controls. I searched for that  in various resources and at last I found that from a site, they described how to load the hand cursor resource from a file, but here I also included a resource of hand cursor with id IDC_CURSOR_HAND

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)

About the Author

Renjith Ramachandran
India India
Member
Simplicity is the ultimate sophistication. Believing in application, then the technology.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: Hyperlink Color in Win XPmemberrenjith_sree6 Feb '06 - 7:11 
GeneralBugmemberironfelix2 Sep '03 - 20:56 
GeneralBackground color and transparencymemberAppstmd18 Jul '03 - 0:02 
Questionwhy this class can not use create?susspoor31 May '03 - 22:01 
AnswerRe: why this class can not use create?memberRenjith R31 May '03 - 22:35 
GeneralRe: why this class can not use create?membersaptor20 Jan '05 - 11:17 
GeneralRe: why this class can not use create?memberzwzzj16 Mar '07 - 20:58 
GeneralBig Big Bugs!!!memberpsusong31 May '03 - 17:02 
GeneralRe: Big Big Bugs!!!membertijske22 Mar '06 - 2:22 
Generalexcellentmemberasrx28 Jan '03 - 1:11 
GeneralRe: excellentmemberRenjith R28 Jan '03 - 4:06 
GeneralStandard hand cursormemberTak29 Dec '02 - 3:57 
GeneralRe: Standard hand cursormemberRenjith R29 Dec '02 - 6:30 
GeneralRe: Standard hand cursormemberTak29 Dec '02 - 6:37 
GeneralRe: Standard hand cursormemberRenjith R29 Dec '02 - 13:59 
GeneralRe: Standard hand cursormemberTak29 Dec '02 - 14:07 
GeneralRe: Standard hand cursormemberHockey3 May '04 - 0:23 
GeneralRe: Standard hand cursorsussAnonymous15 Aug '05 - 22:59 
GeneralExcellent....sussAnonymous27 Dec '02 - 13:15 
GeneralRe: Excellent....memberRenjith R31 May '03 - 18:17 
Questionbetter hyperlink?sussAnonymous27 Dec '02 - 7:50 
AnswerRe: better hyperlink?sussAnonymous27 Dec '02 - 13:13 
GeneralRe: better hyperlink?memberEmcee Lam29 Dec '02 - 13:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 27 Dec 2002
Article Copyright 2002 by Renjith Ramachandran
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid