I'm compiling something on VB... But I can't figure out how to "reset" a picturebox, after printing on it. :confused:
Ex:
Private Sub Text1_Change()
Dim valor, contador, tb As Integer
If Val(Text1) <= 0 Then
(I need to "Reset" my picturebox here)
End If
valor = Val(Text1)
For contador = 1 To 10
tb = contador * valor
Picture1.Print valor & " X " & contador & " = " & tb
Next contador
End Sub