Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共4 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:求表A的“表B日期列距今天数”列代码

1楼
老有所乐 发表于:2009/3/17 23:40:00
表A的“表B日期列距今天数”等于当天减表B日期列的日期数,编号等于编号,谢谢!
 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:日期计算2.table

[此贴子已经被作者于2009-3-17 23:55:08编辑过]
2楼
czy 发表于:2009/3/18 0:19:00
差不多是这样吧

Dim dr1 As DataRow = e.DataRow
Dim dr As DataRow = DataTables("表B").Find("编号 = '" & dr1("编号") & "'")
Dim t As TimeSpan = Date.Today - CDate(dr("日期"))
dr1("表B日期距今天数") = t.TotalDays
3楼
czy 发表于:2009/3/18 0:46:00

楼上代码应该加个判断

If e.DataCol.Name = "编号" And e.DataRow.IsNull("编号") = False Then
    Dim dr1 As DataRow = e.DataRow
    Dim dr As DataRow = DataTables("表B").Find("编号 = '" & dr1("编号") & "'")
    Dim t As TimeSpan = Date.Today - CDate(dr("日期"))
    If  dr IsNot Nothing Then
        dr1("表B日期距今天数") = t.TotalDays
    End If
End If

4楼
老有所乐 发表于:2009/3/18 7:11:00

不好意思,又搞得C版主深夜操劳。感谢感谢!

共4 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .03125 s, 3 queries.