i have a sample code

that is a wrong code but ill just put it so that you will understand what im trying to do.

Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim totjob As Integer = totjobtb.Text
        Dim Input As Integer
        Dim a As Integer

        For start As Integer = 1 To totjob Step 1



            Input = Microsoft.VisualBasic.InputBox("Input anything")
            a += 1

            TextBox(a).text = Input
             ' i set a as integer as of now it should be textbox1.text
        Next

    End Sub

is it possible to create a loop then the input (in the inputbox) will go to different textboxes.


for example:

"Input anything" Hey!

textbox1.text: Hey

next loop

"Input anything" Wuhuuu!

textbox2.text: Wuhuuu!

and so on..

if i am failed to explain it very well please let me know.