Simple Hyperlink Static Control
Posted
by Franz Wong
on January 14th, 2003
Environment: VC6 SP5
I referred to "CScrollHotStatic!XHyperlink and Scroll CStatic Class" by Zhibin Cao when I wrote this control. There are two public functions in CHyperlinkStatic:
void SetHyperlink(CString strHyperlink) void SetCaption(CString strCaption)
SetHyperlink is used to set the hyperlink where you will surf if you click it. SetCaption is used to set the caption you will see.
When the cursor is over the caption, it will become a "Hand" cursor. The caption of the control is also underlined. Simple is the best. I don't have other information to talk about. Enjoy! :-)
Downloads
Download demo project - 21 KbDownload source - 3 Kb

Comments
Some adds
Posted by Legacy on 05/05/2003 12:00amOriginally posted by: Mr. S
ReplyMore Hyperlinks
Posted by Legacy on 01/15/2003 12:00amOriginally posted by: Vitaly
Just wanted to mention another VC++ HyperLink class that can be found on this website: http://www.tooltips.net
Regards,
ReplyVitaly
its nice but........
Posted by Legacy on 01/12/2003 12:00amOriginally posted by: roshan
its nice proj. but there is some prob..........
Replyso plez handle the prob.
Demo proj- resource file sharing violation
Posted by Legacy on 01/10/2003 12:00amOriginally posted by: Aras
Great work
but sorry i couldnt compile the Demo project.
because of resource Error :
HyperlinkDemo.rc(20) : fatal error RC4214: Codepage not valid: ignored
Error executing rc.exe.
I think the reason is chiness language in resource and may
change it to:
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
thanks.
Reply