以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  字段为空  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=160621)

--  作者:seal51
--  发布时间:2021/2/8 17:43:00
--  字段为空
如果表中某个字段为空,自动删除此行, 如何实现?
--  作者:有点蓝
--  发布时间:2021/2/8 20:34:00
--  
datacolchanged事件

If e.DataCol.Name = "第一列"  Then
    If e.DataRow.isnull("第一列") Then e.DataRow.delete
End If