RBCC Posted February 15, 2004 Posted February 15, 2004 how do I use an textbox for input and store it in a arraylist? Quote
Leaders dynamic_sysop Posted February 15, 2004 Leaders Posted February 15, 2004 you can store your textbox's text in an arraylist like this ... Dim arrlist As ArrayList = ArrayList.Adapter(TextBox1.Lines) '/// just to check it's added the lines of text , this store each line of your textbox's text as an item... MessageBox.Show(arrlist.Count) 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.