我已经对此进行了一些研究,但仍然无法让我的程序正常工作。我只需要检查文本框以查看用户输入是否为数值(“。”和或“/”除外)
到目前为止我的代码,
Private Sub Num1_KeyPress(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Num1.KeyPress
Dim UserEntry As Boolean
If UserEntry = IsNumeric(False) Then
MessageBox.Show("That's not numeric!")
End If
End Sub