设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 747|回复: 1
打印 上一主题 下一主题

[与其它组件] 关于用vba实现日期比较

[复制链接]
跳转到指定楼层
1#
发表于 2005-9-28 09:13:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我想用下面这段代码完成在某段日期范围内查找数据的功能。 但是不知为什么无法实现。 请高手帮忙看一下。 谢谢![em17][em17]



    If IsDate(Me.OpenedDateFrom) Then

        ' Add it to the predicate - exact

        strWhere = strWhere & " AND " & "Issues.[Opened Date] >= " & GetDateFilter(Me.OpenedDateFrom)

    ElseIf Nz(Me.OpenedDateFrom) <> "" Then

        strError = cInvalidDateError

    End If

   

    ' If Opened Date To

    If IsDate(Me.OpenedDateTo) Then

        ' Add it to the predicate - exact

        strWhere = strWhere & " AND " & "Issues.[Opened Date] <= " & GetDateFilter(Me.OpenedDateTo)

    ElseIf Nz(Me.OpenedDateTo) <> "" Then

        strError = cInvalidDateError

    End If

-----------------------------------------------------------------------------------------

Function GetDateFilter(dtDate As Date) As String

    ' Date filters must be in MM/DD/YYYY format

    GetDateFilter = "#" & Format(dtDate, "MM/DD/YYYY hh:mm:ss AM/PM") & "#"

End Function
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2005-9-28 17:31:00 | 只看该作者
最好把完整的代码或文件发上来
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-5-29 03:13 , Processed in 0.087187 second(s), 25 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表