Problema con punto en formulario de captura numérica
Hola buen día,
Tengo una laptop en la cual debo realizar capturas de números, lo cual me provoca muchos errores ya que el teclado es difícil de manejar, en fin, para evitarlo creé un formulario muy sencillo y funciona bien hasta que presiono el botón con caption . (punto) ya que no me deja ingresarlo después de cualquier número que ponga, la pregunta es cómo puedo solucionar esto? El código es:
Private Sub CommandButton1_Click()
ActiveCell = ActiveCell & CommandButton1.Caption
End Sub
Private Sub CommandButton2_Click()
ActiveCell = ActiveCell & CommandButton2.Caption
End Sub
Private Sub CommandButton3_Click()
ActiveCell = ActiveCell & CommandButton3.Caption
End Sub
Private Sub CommandButton4_Click()
ActiveCell = ActiveCell & CommandButton4.Caption
End Sub
Private Sub CommandButton5_Click()
ActiveCell = ActiveCell & CommandButton5.Caption
End Sub
Private Sub CommandButton6_Click()
ActiveCell = ActiveCell & CommandButton6.Caption
End Sub
Private Sub CommandButton7_Click()
ActiveCell = ActiveCell & CommandButton7.Caption
End Sub
Private Sub CommandButton8_Click()
ActiveCell = ActiveCell & CommandButton8.Caption
End Sub
Private Sub CommandButton9_Click()
ActiveCell = ActiveCell & CommandButton9.Caption
End Sub
Private Sub CommandButton10_Click()
ActiveCell = ActiveCell & CommandButton10.Caption
End Sub
Private Sub CommandButton11_Click()
ActiveCell = ActiveCell.Value & CommandButton11.Caption
End Sub
el problema es en el command button 11, ya lo probé cambiando el commandbutton11.caption por "." e intenté con varios formatos pero nada.
Gracias!!!