VALIDAR LISTBOX COM CHECKBOX
Criei um listbox no estilo checkbox, quando habilito a caixa qual propriedade é alterada
Não existe um list value, nem list check
Grato
Mauricio
Não existe um list value, nem list check
Grato
Mauricio
Dim i As Integer
MsgBox "Você tem " & List1.SelCount & " itens selecionados"
For i = 0 To List1.ListCount - 1
If List1.Selected(i) Then
MsgBox "O item " & i & " está selecionado"
End If
Next
Tópico encerrado , respostas não são mais permitidas