TextBox problem in Visual Basic .NET 2008
80 pts.
0
Q:
TextBox problem in Visual Basic .NET 2008
My listbox1 and the textbox1 (multilines properties)
When double_click the listbox1, textbox1 = data from list box
Being that the user has to do the event(double_click)several times how do i code the textbox1 to have all the the results of the events?
If the user for example double_click 3,4,5 or 6 times the listbox1, the text box must have 3,4,5 or 6 data from the listbox1 and not only one as I have now

Thanks for your help
ASKED: Feb 7 2009  6:05 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
29855 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
How about doing something like this:

when double click the list box:

textbox1 = textbox1 & ',' & <data from the list box>


(you will need to parse the resultant data in textbox1)
Last Answered: Feb 9 2009  3:10 PM GMT by Carlosdl   29855 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0