1、
Select Case e.DataCol.Name Case "第一列","第二列","第三列" If e.DataRow.Isnull("第一列") OrElse (e.DataRow.Isnull("第二列") AndAlso e.DataRow.Isnull("第三列") Then MessageBox.Show("请填写第一列,第二列,第三列","提示") e.Cancel = True Return End If
End Selsect
2、e.DataRow("某列") = “”