Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to select a particular column in a ListView. When I search for it I always find ways to select row-wise only. Any idea how do I do it? Also how do I get the selected column index?

Using MFC-VS2005.

share|improve this question

2 Answers

There's a CListCtrl::SetSelectedColumn() method that looks like it does what you want: it posts an LVM_SETSELECTEDCOLUMN message to the list view control.

Similarly, CListCtrl::GetSelectedColumn() gets the selected column.

share|improve this answer

I'm maintaining a VS6.0 app that I've ported to VS 2005, and SetSelectedColumn isn't available in CListCtrl unless _WIN32_WINNT >= 0x0501. Mine was 0x400 & I couldn't understand at first why using SetSelectedColumn caused a compiler error. see commctrl.h for details

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.