Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/05/2011, 05:55
Avatar de ProgramadorFrustrado
ProgramadorFrustrado
 
Fecha de Ingreso: mayo-2011
Mensajes: 18
Antigüedad: 13 años
Puntos: 0
Respuesta: ERROR: Se esperaba un objeto: "textbox"

YA LO SOLUCIONEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE al final lo escribi asi:

Private Sub numero7_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 7"

End With
End Sub

Private Sub numero8_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 8"

End With
End Sub

Private Sub numero9_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 9"

End With
End Sub

Private Sub numero4_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 4"

End With
End Sub

Private Sub numero5_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 5"

End With
End Sub

Private Sub numero6_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 6"

End With
End Sub

Private Sub numero1_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 1"

End With
End Sub

Private Sub numero2_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 2"

End With
End Sub

Private Sub numero3_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 3"

End With
End Sub

Private Sub numero0_Click(sender As Object, e As System.EventArgs)
With Textoref

.Text = " 0"

End With
End Sub