> Hi all, In a CListCtrl, is that the user can only select the ITEM Yep. > Can the subitem in other column be selected individually too( only select the subitem )?? Not normally, no. (At least, not that *I* know of.) > If can't, what should I use other than CListCtrl if I want to select cells horizontally ? There are various Grid and Grid-like controls out there that may give you this functionality. On a previous Brokerage-related project, I needed this same functionality. I ended up using the Custom Draw features of the ListView control to simulate it. Using Custom Draw, you can highlight a specific column in the control. If you have some other way to keep track of the current "column selection", you can simulate column selection/highlighting. Peace! -=- James.