[求助]表属性设置掩码后,提示重复了 已解决 Post By:2017/8/12 21:33:00 [只看该作者]
表属性设置掩码后,提示重复了,怎么办?
掩码设置:>LL0000-09
重复值的代码如下:
If e.DataCol.Name = "管理号码" Then If e.DataRow("分批") = False Dim dr As DataRow dr = e.DataTable.Find("管理号码 = '" & e.NewValue & "'") If dr IsNot Nothing Then MessageBox.Show("此管理号码已经存在!") e.Cancel = True End If e.DataRow("管理号码") = Nothing End If End If