我在表的DataColChanged事件,设如下代码。如何补充代码,实现;当“身份证号码”列为空值时(即不输入任何数值时),不出现提示?
If e.DataTable.find("len(身份证号码) <18") IsNot Nothing Then
e.Cancel = True '那么取消输入并提示用户
Messagebox.Show("身份证号码不完整!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If
If e.DataTable.find("len(身份证号码) >18") IsNot Nothing Then
e.Cancel = True '那么取消输入并提示用户
Messagebox.Show("身份证号码不完整!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If