我正在ms-access 2016中创建一个数据库,我想将一个字段设置为仅接受机构电子邮件地址(例如,Gmail,yahoo,Hotmail等)的电子邮件地址(如果用户已输入)上面的电子邮件地址,然后显示警告或错误消息以输入正确的值。 我该怎么办?
答案 0 :(得分:0)
您可以在文本框的 BeforeUpdate 事件中使用以下功能:
"\n"
和功能:
Cancel = Not IsMailAddress(Nz(Me!YourTextbox.Value))
If Cancel = True Then
MessageBox "Please enter a valid e-mail address."
End If