Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 80 of file listview.c.
Referenced by FindNext().
{ INT i, c; LV_FINDINFO fi; c = ListView_GetItemCount(hwndLV); for(i = 0; i < c; i++) { ListView_SetItemState(hwndLV, i, 0, LVIS_FOCUSED | LVIS_SELECTED); } if (pszValueName == NULL) i = 0; else { fi.flags = LVFI_STRING; fi.psz = pszValueName; i = ListView_FindItem(hwndLV, -1, &fi); } ListView_SetItemState(hwndLV, i, LVIS_FOCUSED | LVIS_SELECTED, LVIS_FOCUSED | LVIS_SELECTED); iListViewSelect = i; }