Bom dia Bernardo
deixei assim, abaixo: (não deu resultado, simplesmente não mostra).
Sub Preenchercbopericia()
Dim n As Long, texto As Variant
Dim i As Integer
Me.cbopericia.Clear
For n = 1 To ListView1.ListItems.Count
If Me.ListView1.ListItems(n).ListSubItems(4) = "" Then Exit For
If InStr("|" & texto & "|", Me.ListView1.ListItems(n).ListSubItems(4)) = 0 Then
texto = texto & "|" & Me.ListView1.ListItems(n).ListSubItems(4)
End If
Next
texto = Split(texto, "|")
For i = 1 To UBound(texto)
cbopericia.AddItem texto(i)
Next
Call Ordenarcbopericia
End Sub
Postado : 22/12/2016 6:27 am