I've got a text box called txtbox, and have numbers in an array called number, I need to display the numbers in this array into the textbox in an event procedure (the user will click on Next and i have to show the next number in the number array), I'm fairly new to vb, what i have so far is.
Dim number() As Integer
Dim i As Integer
For i = 0 to number.Length -1
Me.txtbox.Text = number(i)
Next
I need to display the numbers in this array in the textboxbut in your code you ware assigning the textbox value to the arrat asnumber(i) = Me.txtbox.Text