Foxtable(狐表)用户栏目专家坐堂 → TreeView累计子节点数据


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

主题:TreeView累计子节点数据

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


加好友 发短信
等级:超级版主 帖子:110592 积分:562856 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2017/5/15 11:38:00 [显示全部帖子]

判断一下

......
For Each ndcd As WinForm.TreeNode In nd.nodes
   if ndcd.ParentNode isnot nothing then
    If ndcd.nodes.count=0 Then
        ndcd.ParentNode.DataRow("ValueA")+=ndcd.DataRow("ValueA")
        ndcd.ParentNode.DataRow("ValueB")+=ndcd.DataRow("ValueB")
    Else
        Functions.Execute("CalChild",tb,tr,ndcd)
        ndcd.ParentNode.DataRow("ValueA")+=ndcd.DataRow("ValueA")
        ndcd.ParentNode.DataRow("ValueB")+=ndcd.DataRow("ValueB")
    End If
   end if
Next

 回到顶部