Public Class Form1 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Numeros(9) As Integer Dim posicion As Integer Dim recorrido As Integer If posicion <= 9 Then Numeros(posicion) = Val(Numero.Text) Label5.Text = Numeros(posicion) posicion = posicion + 1 Else MsgBox("Esta lleno") End If End Sub End Class