Foxtable(狐表)用户栏目专家坐堂 → 多选加载问题


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

主题:多选加载问题

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


加好友 发短信
等级:管理员 帖子:47448 积分:251054 威望:0 精华:91 注册:2008/6/17 17:14:00
  发帖心情 Post By:2013/3/11 15:56:00 [显示全部帖子]

Dim trv As WinForm.TreeView = e.Sender
Dim flt As String
For Each nd As WinForm.TreeNode In e.node.Nodes '同步子节点选中状态
    nd.Checked = e.Node.Checked
Next
If e.node.ParentNode IsNot Nothing Then '去掉父节点选中状态
    e.node.ParentNode.Checked = False
End If
For Each nd As WinForm.TreeNode In trv.AllNodes
    If nd.Level > 0 AndAlso nd.ParentNode.Checked Then '如果父节点选中
        Continue For '跳过此节点,处理下一结点
    End If
    If nd.Checked Then
        If flt > "" Then
            flt = flt & " Or "  '注意用or而不是And
        End If
        Select Case e.Node.Level
            Case 0
                flt = flt & "( 统计年度 = '" & nd.Text & "')"
            Case 1
                flt = flt & "( 统计年度 = '" & nd.ParentNode.Text & "' And 统计月份 = '" & nd.Text & "')"
            Case 2
                flt = flt & "( 统计年度 = '" & nd.ParentNode.ParentNode.Text & "' And 统计月份 = '" & nd.ParentNode.Text & "' and 通知日期 = # " & nd.Text & " #)"
        End Select
    End If
Next
If flt = "" Then
   flt = "[_Identify] Is Null"
End If
DataTables("销售订单").LoadFilter = flt
DataTables("销售订单").Load()
DataTables("明细").Load()

 回到顶部