Foxtable(狐表)用户栏目专家坐堂 → [求助]如何打印筛选出来的数据


  共有2293人关注过本帖平板打印复制链接

主题:[求助]如何打印筛选出来的数据

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


加好友 发短信
等级:幼狐 帖子:95 积分:1088 威望:0 精华:0 注册:2015/6/24 22:29:00
[求助]如何打印筛选出来的数据  发帖心情 Post By:2015/6/24 22:35:00 [只看该作者]

筛选条码Dim Filter As String
With e.Form.Controls("StartDate")
    If .Value IsNot Nothing Then
        If Filter >"" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "录入时间 >= #" & .Value & "#"
    End If
End With
With e.Form.Controls("EndDate")
    If .Value IsNot Nothing Then
        If Filter >"" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "录入时间  <= #" & .Value & "#"
    End If
End With
If Filter > "" Then
    Tables("质控管理").Filter = Filter
End If

 

求助 打印条码???


 回到顶部