How to scan items of combo box

  • Thread starter Thread starter Guest
  • Start date Start date
Dim i As Integer
For i = 0 To ComboBox1.Items.Count - 1
MsgBox(ComboBox1.Items(i).ToString())
Next
 
* "=?Utf-8?B?TGkgUGFuZw==?= said:
I want simply to scan the items of a combo box control. Anyone give a help?

\\\
Dim o As Object
For Each o In Me.ListBox1.Items
MsgBox(o.ToString())
Next o
///
 
Back
Top