2016-09-15 26 views

回答

0
Dim i As Integer 

For i = 0 To Me.ComboBox1.ListCount - 1 Step 1 

    If Me.ComboBox1.List(i, 0) = "SOMEVALUE" Then 'looks in column 1, change the 0 to 1 for column 2 

     MsgBox "ITEM FOUND" 
    End If 
Next i 
相关问题