|
I have a long list. I want to make the selected item visible when i click on a button how do i do it
int x = SendMessage(hWndLV,LVM_GETHOTITEM,0,0); // Gets the selected ListView Item
x = SendMessage(hWndLV, LVM_GETNEXTITEM, -1, MAKELPARAM (LVNI_SELECTED, 0)); // Move to List View Item and Make it visible
|
|