I have a listview with LVS_SINGLESEL and I want to know when the user changes selection.
I think I can wait for LVN_ITEMACTIVATE but my window doesn't receives that notification.
I used also Spy++ and I saw that my window doesn't receives that notification.
Should I activate this message? Maybe with a style of the ListView?
I think I can wait for LVN_ITEMACTIVATE but my window doesn't receives that notification.
I used also Spy++ and I saw that my window doesn't receives that notification.
Should I activate this message? Maybe with a style of the ListView?
process the LVN_ITEMCHANGED message.
Thanks