以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]请帮忙看一下这段的代码,哪里错了,谢谢!  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=62216)

--  作者:bigeng
--  发布时间:2014/12/27 16:40:00
--  [求助]请帮忙看一下这段的代码,哪里错了,谢谢!
With sfn
    If .text IsNot Nothing Then
        If Filter > "" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "实发数 = " & .text & " "
    End If
End With


--  作者:程兴刚
--  发布时间:2014/12/27 18:13:00
--  

这两句都应该有问题,不知道您要表达什么,详细说明:

With sfn
    If .text IsNot Nothing Then

--  作者:游
--  发布时间:2014/12/27 21:55:00
--  
With sfn
    If Val( .text)> 0  Then
        If Filter > "" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "实发数 = " &   .text  & " "
    End If
End With

--  作者:有点甜
--  发布时间:2014/12/28 9:22:00
--  
 代码没有问题,有问题就是你的sfn类型弄错了。
[此贴子已经被作者于2014-12-28 9:22:06编辑过]