- 30 Maggio 2010
- 114
- 0
- Miglior risposta
- 0
per cercare in una listview a tre colonne tramite un textbox e un command button ho usato un comando che fino a poco tempo fà funzionava ora forse avro spostato qualkosa involontariamente e non funziona più. i codici che ho usato sono i seguenti
'cerca
Private Sub cerca_Click()
Dim itmX As ListItem
With lstVal
Set itmX = .FindItem(TextBox.Text, lvwSubItem, , 1)
If Not itmX Is Nothing Then
itmX.EnsureVisible
.ListItems(itmX.Index).Selected = True
.SetFocus
End If
End With
Set itmX = Nothing
End Sub
'cerca
Private Sub cerca_Click()
Dim itmX As ListItem
With lstVal
Set itmX = .FindItem(TextBox.Text, lvwSubItem, , 1)
If Not itmX Is Nothing Then
itmX.EnsureVisible
.ListItems(itmX.Index).Selected = True
.SetFocus
End If
End With
Set itmX = Nothing
End Sub