https://github.com/ozzies-code/onlynumbers
Program that allows the entry by the keyboard if it is only numbers
https://github.com/ozzies-code/onlynumbers
Last synced: 4 months ago
JSON representation
Program that allows the entry by the keyboard if it is only numbers
- Host: GitHub
- URL: https://github.com/ozzies-code/onlynumbers
- Owner: ozzies-code
- Created: 2023-06-13T02:42:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-13T02:46:19.000Z (about 3 years ago)
- Last Synced: 2025-06-12T10:08:27.301Z (about 1 year ago)
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# onlynumbers
Program that allows the entry by the keyboard if it is only numbers
Public Class FormEjemploTeclado
Private Sub TxtEntrada_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TxtEntrada.KeyPress
If Not (IsNumeric(e.KeyChar)) Then
e.Handled = True
End If
End Sub
End Class