以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]筛选两个时间段内的代码  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=54114)

--  作者:荟美绘姿
--  发布时间:2014/7/22 10:57:00
--  [求助]筛选两个时间段内的代码


图片点击可在新窗口打开查看此主题相关图片如下:捕获.png
图片点击可在新窗口打开查看
筛选这两个时间之间的数据代码如何写

代码写在查询按钮里

这两个时间是可以改的

 

 

谢谢

[此贴子已经被作者于2014-7-22 10:57:52编辑过]

--  作者:Bin
--  发布时间:2014/7/22 10:58:00
--  
http://www.foxtable.com/help/topics/2706.htm
--  作者:有点甜
--  发布时间:2014/7/22 10:59:00
--  

Dim t1 As Date
Dim t2 As Date

Tables("表A").Filter = "案发时间 >= #" & t1 & "# and 案发时间 <= #" & t2 & "#"


--  作者:荟美绘姿
--  发布时间:2014/7/22 11:05:00
--  

我要将上面的情况放在下面的代码中,请帮我修改一下下,谢谢

 

 

Dim Filter As String
With e.Form.Controls("TextBox8")
    If .Value IsNot Nothing Then
        Filter = "编号 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("TextBox7")
    If .Value IsNot Nothing Then
        Filter = "车辆基本情况_车牌号码 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("ComboBox5")
    If .Value IsNot Nothing Then
        If Filter > "" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "车辆基本情况_车牌颜色 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("ComboBox6")
    If .Value IsNot Nothing Then
        Filter = "案件状态 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("DateTimePicker2")
    If .Value IsNot Nothing Then
        Filter = "违章基本情况_违章时间 >= \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("DateTimePicker3")
    If .Value IsNot Nothing Then
        Filter = "违章基本情况_违章时间 <= \'" & .Value & "\'"
    End If
End With
If Filter > "" Then
    Tables("车辆违章表").Filter = Filter
End If

 

 

 


--  作者:有点甜
--  发布时间:2014/7/22 11:08:00
--  
Dim Filter As String = "1=1"
With e.Form.Controls("TextBox8")
    If .Value IsNot Nothing Then
        Filter &= " and 编号 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("TextBox7")
    If .Value IsNot Nothing Then
        Filter &= " and 车辆基本情况_车牌号码 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("ComboBox5")
    If .Value IsNot Nothing Then
        Filter &= " and 车辆基本情况_车牌颜色 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("ComboBox6")
    If .Value IsNot Nothing Then
        Filter &= " and 案件状态 = \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("DateTimePicker2")
    If .Value IsNot Nothing Then
        Filter &= " and 违章基本情况_违章时间 >= \'" & .Value & "\'"
    End If
End With
With e.Form.Controls("DateTimePicker3")
    If .Value IsNot Nothing Then
        Filter &= " and 违章基本情况_违章时间 <= \'" & .Value & "\'"
    End If
End With
If Filter > "" Then
    Tables("车辆违章表").Filter = Filter
End If

--  作者:荟美绘姿
--  发布时间:2014/7/22 11:08:00
--  
顶起来
--  作者:荟美绘姿
--  发布时间:2014/7/22 11:46:00
--  

具体情况如下图:

 


图片点击可在新窗口打开查看此主题相关图片如下:捕获.png
图片点击可在新窗口打开查看

--  作者:有点甜
--  发布时间:2014/7/22 11:49:00
--  
看5楼。
--  作者:Bin
--  发布时间:2014/7/22 11:49:00
--  
看5楼
参考帮助http://www.foxtable.com/help/topics/1058.htm