Click here to Skip to main content
Licence CPOL
First Posted 25 Feb 2008
Views 17,849
Downloads 210
Bookmarked 16 times

A list control with hyperlink function

By | 26 Feb 2008 | Article
This control provides hyperlink function for the list control with exact positioning for the cursor.

Introduction

This code provides a way for adding hyperlink function for the CListCtrl.

Background

When I searched a method to do this, on The Code Project, I noticed that most of the available code provided the function, but not perfectly. When the cursor moves on the cell of the grid, the hyperlink works, but not the words. So, I decided to write code to provide the function in a better way.

Using the code

The basic class is CReportCtrl which is derived from CListCtrl.

The usage of CReportCtrl is quite simple, just like this:

m_list.SetColumnHeader(_T("no, 40, 1; name, 290, 1; link, 70, 1"));
m_list.SetGridLines(TRUE);
m_list.InsertItem( 0 , _T(""));
m_list.SetItemText(0, 0, 1);
m_list.SetItemText(0, 1, "website");
m_list.SetItemText(0, 2, "baidu");
m_list.SetItemURL(0, 2,"www.baidu.com","search website - www.baidu.com");
m_list.InsertItem(1, _T(""));
m_list.SetItemText(1, 0, 1);
m_list.SetItemText(1, 1, "gg");
m_list.SetItemText(1, 2, "google");
m_list.SetItemURL(1, 2,"www.google.com", "search website - www.google.com");

1.jpg

2.jpg

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

liuxiao



China China

Member



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalgood job PinmemberAnu Koshy18:26 2 Jun '10  
GeneralThank you PinmemberPortatofe8:32 2 Oct '08  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 26 Feb 2008
Article Copyright 2008 by liuxiao
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid