combobox dynamisch vullen

Status
Niet open voor verdere reacties.
Die kan niet op tegen.....
Code:
Private Sub UserForm_Initialize()
Dim sv, i As Long
sv = Range("C3", Cells(Rows.Count, 3).End(xlUp))
With CreateObject("scripting.dictionary")
    For i = 1 To UBound(sv)
      .Item(sv(i, 1)) = ""
    Next i
 ComboBox1.List = .keys
End With
End Sub
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan