Listview

  • Thread starter Thread starter Mark
  • Start date Start date
* "Mark said:
How Can I find out if is some Item selected in Listview.

Determining if any item is selected:

\\\
If Me.ListView1.SelectedItems.Count > 0 Then
...
End If
///

Determining if item 'x' is selected:

\\\
If Me.ListView1.SelectedItems.Contains(x) Then
...
End If
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top