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