tags:

views:

205

answers:

1

How do I get an item's index number using the caption text? I'm using CListCtrl class of MFC. I have the item's caption text, can I get the index for that item and then update its text. It will be helpful if you could provide an example.

+2  A: 

CListCtrl::FindItem (MSDN link with example)

aJ
Perfect, kudos to you :)
hab