LISTVIEW

CAIO.FR.SP 25/08/2009 20:58:44
#320953
como saber se algum item esta selecionado em um listview
FOXMAN 25/08/2009 21:18:38
#320955
Resposta escolhida
For i = 1 to listview.listitems.count 
if listview.Listitems(i).selected = true them
msgbox([Ô]bla.lba.lba.[Ô])
end if
next i
MARCELO.TREZE 25/08/2009 21:32:47
#320957
se você tiver usando o listview com checkbox seria assim

Private Sub Command1_Click()
For i = 1 To ListView1.ListItems.Count
If ListView1.ListItems(i).Checked = True Then [ô]verifica qual está selecionado
Msgbox [Ô]Linha selecionada é : [Ô] & ListView1.ListItems(i).ListSubItems.Item(1).Text
End If
Next i
End Sub

Tópico encerrado , respostas não são mais permitidas