允许文本框仅使用字母字符

时间:2013-05-26 20:01:26

标签: textbox integer

我正在研究我的项目,这是一个基本的汽车零件程序,我希望在用户插入客户端时保护客户端中的文本框我不希望名称允许数字只是字符串我该怎么做? / p>

由于

1 个答案:

答案 0 :(得分:0)

你可以尝试这样的事情 您可以检查文本,即TextBox2.Text,以确保除了使用正则表达式的内容中的字母字符外没有其他内容

Private Sub TextBox2_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox2.Leave
  If Not Regex.Match(TextBox2.Text, "^[a-z]*$", RegexOptions.IgnoreCase).Success Then
    MsgBox("Please enter alphabetic text only.")
    TextBox2.Focus()
  End If

End Sub