Foxtable(狐表)用户栏目专家坐堂 → [求助]运算错误问题


  共有1709人关注过本帖树形打印复制链接

主题:[求助]运算错误问题

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


加好友 发短信
等级:狐神 帖子:4650 积分:33912 威望:0 精华:0 注册:2008/8/31 22:44:00
  发帖心情 Post By:2019/8/2 19:21:00 [显示全部帖子]

Dim r As Row = e.Table.Current
If r Is Nothing Then Return
If Forms("主界面").Opened
    Forms("主界面").Controls("TextBox7").text = r("工作单位_镇街") & r("工作单位_村居社区") & r("职务")
    Forms("主界面").Controls("TextBox4").text = IIF(r.IsNull("入党时间"),"否","是")
    With Tables("村干部基本信息")
        If .Current Is Nothing Then
            Tables("主界面_Table2").Filter = "False"
            Tables("主界面_Table3").Filter = "False"
            Tables("主界面_Table4").Filter = "False"
        Else
            Tables("主界面_Table2").Filter = "村干部编号 = '" & .Current("村干部编号") & "'"
            Tables("主界面_Table3").Filter = "村干部编号 = '" & .Current("村干部编号") & "'"
            Tables("主界面_Table4").Filter = "村干部编号 = '" & .Current("村干部编号") & "'"
        End If
    End With
End If

 回到顶部