1
我需要獲取組合框中特定位置的項目。如何在組合框中的特定位置獲取物品?
這就是我想:
Private Sub PrintItems(Combo As ComboBox)
Dim i As Long
For i = 1 To Combo.ListCount
Debug.Print Combo(i) ' Combo(i) is pseudo-code to get the item
Next
End Sub