textfield numers

  1. Jmu5667

    B4J Code Snippet TextField Numeric Input only

    Hi all Here is how I handle numbers only input for a text field. Sub txtField_TextChanged (Old As String, New As String) Dim update As Boolean Try Dim text As String = Regex.Replace("\D",New,"") If New <> text Then update = True End If...
Top