R
rdi
Why does the following NOT remove the items from the ListView? I need to
remove all the items and re-build the LV based on new information.
Thanks.
--
RDI
(remove the exclamation from the email address)
If lvwFilter.Items.Count > 0 Then
For k = lvwFilter.Items.Count - 1 To 0
lvwFilter.Items.RemoveAt(k)
Next
End If
remove all the items and re-build the LV based on new information.
Thanks.
--
RDI
(remove the exclamation from the email address)
If lvwFilter.Items.Count > 0 Then
For k = lvwFilter.Items.Count - 1 To 0
lvwFilter.Items.RemoveAt(k)
Next
End If