Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim oListItem As MSComctlLib.ListItem
Dim oSubItem As MSComctlLib.ListSubItem
For Each oListItem in myListView.ListItems
If oListItem.Selected then
'X
End If
For Each oSubItem In oListItem.ListSubItems
'X
Next oSubItem
Next oListItem
Dim oListItem As MSComctlLib.ListItem
Dim oSubItem As MSComctlLib.ListSubItem
Set oListItem = myListView.SelectedItem
If oListItem is Nothing then
'Nothing Selected
else
'oListItem contains valid reference to
'selected item, so we need to process appropriately
end if