Public Class Form1 Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.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