You must set
Checked property for each
ListViewItem to False to clear all the checked items.
'Declare the ListViewItem
Dim lvItem As ListViewItem
' Change each item's Checked property to False
For Each lvItem In lvTables.Items
lvItem.Checked = False
Next