How can I add items in ComboListbox in 2008, i cant find the right function..
In vb6.0 im just using Combo1.AddItem(string)... how about in VB 2008? THanks.
Printable View
How can I add items in ComboListbox in 2008, i cant find the right function..
In vb6.0 im just using Combo1.AddItem(string)... how about in VB 2008? THanks.
No such thing as a ComboListBox. It's just a ComboBox. Items are accessed via the items collection, e.g.vb.net Code:
Me.ComboBox1.Items.Add(newItem)