Question

How Can I delete specific item with only know specific column ?

Was it helpful?

Solution

Well, Found an answer ..

LVITEM lvi;
ZeroMemory(&lvi, sizeof(LVITEM));
lvi.pszText = "SomeText";
lvi.iSubItem = 1;
SendMessage(GetDlgItem(hWindow, IDC_LIST_USERS), LVM_GETITEM, 0, (LPARAM)(&lvi));
SendMessage(GetDlgItem(hWindow, IDC_LIST_USERS) , LVM_DELETEITEM, lvi.iItem, 0);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top