110 pts.
 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

Software/Hardware used:
ASKED: February 7, 2009  6:05 AM
UPDATED: February 9, 2009  4:08 PM

Answer Wiki:
How about doing something like this: when double click the list box: <pre>textbox1 = textbox1 & ',' & <data from the list box></pre> (you will need to parse the resultant data in textbox1)
Last Wiki Answer Submitted:  February 9, 2009  3:10 pm  by  carlosdl   63,535 pts.
All Answer Wiki Contributors:  carlosdl   63,535 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _