I'm jsut wondering, how do i save data from my Listbox1 into a .txt file called E:\Answers.txt???
The Listbox contains this data
It wall all be numbers if that helps
The Listbox contains this data
VB.NET:
Dim list(150) As Integer
Dim count As Integer
list(count) = TextBox3.Text
Form2.ListBox1.Items.Add(list(count))
It wall all be numbers if that helps