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

Leave a Reply

You must be logged in to post a comment.