G Guest Mar 29, 2004 #1 Hi I want simply to scan the items of a combo box control. Anyone give a help Thank
G Guest Mar 29, 2004 #2 Dim i As Integer For i = 0 To ComboBox1.Items.Count - 1 MsgBox(ComboBox1.Items(i).ToString()) Next
H Herfried K. Wagner [MVP] Mar 29, 2004 #3 * "=?Utf-8?B?TGkgUGFuZw==?= said: I want simply to scan the items of a combo box control. Anyone give a help? Click to expand... \\\ Dim o As Object For Each o In Me.ListBox1.Items MsgBox(o.ToString()) Next o ///
* "=?Utf-8?B?TGkgUGFuZw==?= said: I want simply to scan the items of a combo box control. Anyone give a help? Click to expand... \\\ Dim o As Object For Each o In Me.ListBox1.Items MsgBox(o.ToString()) Next o ///