Hallo,
I realy need help!
I just started programming with .Net Windows Forms, and i tried to bind
a System.String [] to a multiline TextBox to display all elements of
the array at once!! I always got the same result. The first element of
the array gets displayed and the other not! Why ?? Is it possible to do
this or is it only possible to display one element after the other (-->
position += 1)??
Chris - 13 Dec 2005 18:20 GMT
> Hallo,
>
[quoted text clipped - 5 lines]
> this or is it only possible to display one element after the other (-->
> position += 1)??
It is working the way it is suppose to. The textbox is not ment to bind
many object to it, it is built to bind one object to it. The listview
would do you want. Otherwise, loop through your array and build one
string and pass that to the textbox.
Chris