Quote (Trig @ Mar 25 2015 07:29pm)
and to your last solution i tried the addrange
returns
error: no overload for method addrange takes 3 paramaters
We personally write wrappers for addrange at work. You might consider this.
Try creating a List(of String) and adding your items to that and then passing that in?
Also, if you want a single string that is just
b1 ib2 ib3
try doing maybe:
Code
consoleListBox.Items.Add(itemBox.Text & " " & itemBox2.Text & " " & itemBox3.Text);
This post was edited by Eep on Mar 25 2015 06:42pm