Below is the code to place 50 items in a Textbox/Listbox in the Listbox the items show 1 - 50 but in the Textbox they show 50 - 1
I know why it's doing this but how do I reverse it to show 1 - 50 same as the Listbox?
For i = 1 To 50
TextBox1.Text = (i.ToString & ") " & (arrNumber(i))) & vbCrLf & TextBox1.Text
ListBox1.Items.Add(i.ToString & ") " & (arrNumber(i)))
Next
I know why it's doing this but how do I reverse it to show 1 - 50 same as the Listbox?
For i = 1 To 50
TextBox1.Text = (i.ToString & ") " & (arrNumber(i))) & vbCrLf & TextBox1.Text
ListBox1.Items.Add(i.ToString & ") " & (arrNumber(i)))
Next