Foxtable(狐表)用户栏目专家坐堂 → 代码


  共有3591人关注过本帖树形打印复制链接

主题:代码

帅哥哟,离线,有人找我吗?
zhangxl1964
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:二尾狐 帖子:553 积分:5327 威望:0 精华:0 注册:2011/6/7 13:33:00
代码  发帖心情 Post By:2013/9/18 10:19:00 [显示全部帖子]

老师:下面的代码,在Access的数据库时可以运行结果准确,放在SQLserver数据库时,没有运行,请帮助修改错误。
If e.DataCol.Name="合同止期"
    Dim Num As String
    Dim MaxMonth As Date="1990-1-1"
    Num=e.DataRow("编号")
    Dim Flag As Integer=0
    For Each dr As DataRow In DataTables("合同记录").Select("编号='" & Num & "'")
        If dr("登记月份")>e.DataRow("登记月份")
            e.DataRow("剩余天数")=Nothing
            Flag=1
        Else
            dr("剩余天数")=Nothing
        End If
    Next
    
    If Flag=0
        If(e.DataRow.IsNull("合同止期") Or e.DataRow("辞退日期")<> Nothing) Then
        e.DataRow("剩余天数")=Nothing
    Else
        Dim dt1 As Date=e.DataRow("合同止期")
        Dim dt2 As Date=Date.Today
        Dim Result As TimeSpan=dt1-dt2
        e.DataRow("剩余天数")=Result.Days
    End If
End If
End If

 回到顶部
帅哥哟,离线,有人找我吗?
zhangxl1964
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:二尾狐 帖子:553 积分:5327 威望:0 精华:0 注册:2011/6/7 13:33:00
  发帖心情 Post By:2013/9/18 10:47:00 [显示全部帖子]

嗯,找到了。


 回到顶部