An open API service indexing awesome lists of open source software.

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

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