How to scan items of combo box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I want simply to scan the items of a combo box control. Anyone give a help

Thank
 
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
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top