以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  从日期列提取年份到另一列的编程  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=146313)

--  作者:高东坡
--  发布时间:2020/2/21 10:01:00
--  从日期列提取年份到另一列的编程
从“日期”列提取年份到“年份”列的编程
--  作者:有点蓝
--  发布时间:2020/2/21 10:21:00
--  

在该表的DataColChanged事件中加入下面的代码:

If e.DataCol.Name = "日期" Then
    If
 e.DataRow.IsNull("日期")Then
        e.
DataRow("
年份") = Nothing
    Else

        e.
DataRow("
年份") = e.DataRow("日期").year
    
End If
End
 If


--  作者:高东坡
--  发布时间:2020/2/21 10:57:00
--  
谢谢,工程师