VB
How to add items to a multi-column combo box
With cboSourceDataVerification
.Clear
.AddItem
.List(0, 0) = "a"
.List(0, 1) = "b"
.List(0, 2) = "c"
End With
How to add items to a multi-column combo box
With cboSourceDataVerification
.Clear
.AddItem
.List(0, 0) = "a"
.List(0, 1) = "b"
.List(0, 2) = "c"
End With