How do I select all rows in a ListView?
I have this function to de-select them.
I have this function to de-select them.
Code:
FUNCTION ListView_UnselectAll (byval Winhandle as dword, BYVAL Dlg as long) AS LONG local TempDword1 as dword CONTROL HANDLE Winhandle, Dlg TO TempDword1 ListView_SetItemState TempDword1, -1, BYVAL %NULL, %LVIS_SELECTED OR %LVIS_FOCUSED END FUNCTION
Comment