设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

[查询] 求助:执行查询后,记录一闪而过(已解决)

[复制链接]
跳转到指定楼层
1#
发表于 2012-8-20 11:32:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 cocopig 于 2012-8-20 15:46 编辑

设有列表框“me.cmbReverson”,里有三个选项“全部”、“未回复”、“已回复”。编写代码如下:
    if not IsNull(me.xxx) then
           strWhere=strWhere & ........
       ...........
    If Not IsNull(Me.cmbReversion) Then
        Select Case Me.cmbReversion
            Case "全部"
                strWhere = strWhere
               
            Case "未回复"
                strWhere = strWhere & "([Reversion] = '是' AND [FinishedDate] is Null) and "
               
            Case "已回复"
                strWhere = strWhere & "([Reversion] = '是' AND [FinishedDate] Is not Null) and "
            
            Case Default
                MsgboxShow "非法输入,请从下拉列表中选择!", "错误"
                Exit Sub
        End Select
    End If

        If Len(strWhere) > 0 Then
        strWhere = Left(strWhere, Len(strWhere) - 5)
    End If
           
    Me.fmSubSupervisalPaperList.Form.Filter = strWhere
    Me.fmSubSupervisalPaperList.Form.FilterOn = True
     “已回复”和“未回复”选项执行正常。执行过“已回复”或“未回复”选项后,再执行“全部”,记录集就一闪而过,先出现,立即消失。这是什么原因?如何解决?

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2012-8-20 13:44:02 | 只看该作者
If Not IsNull(Me.cmbReversion) Then
       Select Case Me.cmbReversion
            Case "全部"
                strWhere = "True"
               
            Case "未回复"
                strWhere = strWhere & " and ([Reversion] = '是' AND [FinishedDate] is Null)"
               
            Case "已回复"
                strWhere = strWhere & " and ([Reversion] = '是' AND [FinishedDate] Is not Null)"
            
            Case Default
                MsgboxShow "非法输入,请从下拉列表中选择!", "错误"
                Exit Sub
        End Select
End If
me.子窗体.form.filter=strwhere
me.子窗体.form.filteron=true
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-29 19:44 , Processed in 0.104278 second(s), 25 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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