Code:
Dim Ask_ As Integer
Try
Ask_ = InputBox("Enter in the line you wish to go to.", "Go To", 1)
Catch
Msgbox("You must enter in a number!")
End Try

'Some code here? TxtText.SelectionStart = ?

How could i make the cursor jump to the line that the user specified?