|
-
May 20th, 1999, 12:15 PM
#1
CListCtrl highlighting
how can I highlight the whole row of a report when I click anywhere on the row
-
May 20th, 1999, 01:34 PM
#2
Re: CListCtrl highlighting
Send the list control a message like this:
m_ListCtrl.SendMessage(LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_FULLROWSELECT);
This will give you full row highlighting.
-
May 27th, 1999, 02:06 AM
#3
Re: CListCtrl highlighting
Add the line
ListView_SetExtendedListViewStyle(m_mylistctrl.m_hWnd,LVS_EX_FULLROWSELECT);
where you are populating the List Control
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|