Foxtable(狐表)用户栏目专家坐堂 → 下拉窗口值无法保存


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

主题:下拉窗口值无法保存

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


加好友 发短信
等级:超级版主 帖子:110443 积分:562081 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2022/6/7 16:11:00 [显示全部帖子]

调试

Dim s As String
Dim trv As WinForm.TreeView = e.Form.Controls("TreeView1")
For Each nd As WinForm.TreeNode In trv.AllNodes
    If nd.Checked  Then  ' 这个节点选中的话
msgbox(nd.name)
        Dim pd As WinForm.TreeNode = nd.ParentNode '获取父节点
        If pd IsNot Nothing Then  '有父节点
            If pd.Checked = False  Then '父节点没有选中
                s = s & "," & nd.name
            End If
        Else  '没有父节点
            s = s & "," & nd.name
        End If 
msgbox(s)       
    End If    
Next
msgbox(s)      
e.Form.DropDownBox.Value = s.trim(",")
e.Form.DropDownBox.CloseDropdown

 回到顶部