Estos valores tienen que estar fuera del evento click de tu boton :
Declarados como variables global en tu formulario.
Código vb.net:
Ver originalDim lista As ArrayList = New ArrayList(9)
Dim cont As Integer = 0
Dim i, total As Integer
y esto dentro del evento click de tu boton :
Código vb.net:
Ver original'El contador aumenta 1
cont = cont + 1
'Se agrega al arraylist el numero
lista
.Add(Val(TxtNumero
.Text))'Aqui hacer la validacion para saber si llego al numero 10
If cont = 10 Then
'recorremos el arraylist
For i = 0 To 9 Step 1
total = total + lista(i)
Next
'Una vez hecha la suma mostramos el total
MsgBox("El Suma Total es :" & total
.toString()) End If