*Experts* jfackler Posted March 29, 2003 *Experts* Posted March 29, 2003 Works in the app I created to mimic your form. Are you placing the item to add in the ()? Show me your code frag. Here's how to add mutiple items using an array. Dim item As String Dim someitems() As String = New String(2) {"hello", "from", "combobox"} ' (0) through (2). For Each item In someitems ComboBox1.Items.Add(item) Next Quote
hitechoutlaw Posted March 29, 2003 Author Posted March 29, 2003 like the other stiff in this topic, i'm calling this from a class and the ComboBox1.Items.Add("Blah") wont work in a class, do u see what i'm getting at here? thanks neways Quote
*Experts* jfackler Posted March 29, 2003 *Experts* Posted March 29, 2003 o, mybad, lost track of what you were doing put the question out as a new post, somebody will get you the answer. I couldn't make it happen. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.