Este codigo uso yo para los lvw:
Código PHP:
Private Sub ListView1_DblClick()
If CuentaSeleccion(ListView1) > 0 Then
'realizas lo que quieras como
frmOtroFormularioconListView.Show
Else
MsgBox "Debe seleccionar un ítem", vbInformation, "Mensaje Sistema"
End If
End Sub
y esta es la funcion para validar que se haya seleccionado un registro del lvw:
Private Function CuentaSeleccion(LvwListView As ListView) As Long
'Esto revisa si se ha seleccionado algún registro del List View
Dim i As Long
Dim j As Long
j = 0
For i = 1 To LvwListView.ListItems.Count
If LvwListView.ListItems(i).Selected = True Then
j = j + 1
End If
Next i
CuentaSeleccion = j
End Function
saludos