我正在尝试设置一个表格来接受电话号码,但我不确定如何验证它,所以它只会采用 11 位数字的数值。
到目前为止,我一直在努力确保文本框中有内容
'Validate data for Telephone Number
If txtTelephoneNumber.Text = "" Then
txtTelephoneNumber.Focus()
MessageBox.Show("You must enter a Telephone Number.", "Data Entry Error", MessageBoxButtons.OK, MessageBoxIcon.Information)