I'm having a problem with my for loops. The program is supposed to get a number from the user and when button is pressed add 1 and skip a line until the tenth number is reached. I fell like I almost have it but I'm missing something. Please help.
Public Class Form1
Private Sub btnGo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGo.Click
Dim intCounter As Integer
Dim number As Integer
Dim result As Integer
Dim wrap As String
wrap = Chr(13) & Chr(10)
number = numberBox.Text
For intCounter = 1 To 10
TextBox2.Text = number + 1 & wrap
Next intCounter
End Sub
Private Sub btnExit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExit.Click
Me.Close()
End Sub
End Class