以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  逻辑判断  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=58663)

--  作者:feiyu988
--  发布时间:2014/10/21 20:05:00
--  逻辑判断

列A为逻辑列,想在列A为TURE时自动在列B填写当前日期和时间,应该怎样实现呢?


--  作者:有点甜
--  发布时间:2014/10/21 20:11:00
--  

 在datacolchanged事件写入代码

 

If e.DataCol.Name = "A"
    If e.DataRow("A") = True Then
        e.DataRow("B") = Date.Now
    Else
        e.DataRow("B") = Nothing
    End If  
End If


--  作者:feiyu988
--  发布时间:2014/10/21 20:12:00
--  
谢谢甜师傅,呵呵,我的问题90%都是你回答的