Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / MFC
Article

A list control with hyperlink function

Rate me:
Please Sign up or sign in to vote.
3.62/5 (11 votes)
26 Feb 2008CPOL 37.8K   641   23   2
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:

C++
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)


Written By
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalgood job Pin
Anu Koshy2-Jun-10 18:26
Anu Koshy2-Jun-10 18:26 
GeneralThank you Pin
Portatofe2-Oct-08 8:32
Portatofe2-Oct-08 8:32 

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

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