[Solved] Allow only numeric values in textbox? [closed]


If Asc(e.KeyChar) <> 8 Then
        If Asc(e.KeyChar) < 48 Or Asc(e.KeyChar) > 57 Then
            e.Handled = True
        End If
End If

5

solved Allow only numeric values in textbox? [closed]