Foxtable(狐表)用户栏目专家坐堂 → [求助]目录树相关


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

主题:[求助]目录树相关

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


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

通常这种问题,你可以用这个判断一下,执行到哪里出错:

http://www.foxtable.com/help/topics/1485.htm

 

 

Dim tr As WinForm.TreeView = e.Form.Controls("商品类目")
Dim nd As WinForm.TreeNode = tr.SelectedNode
If nd Is Nothing Then
    MessageBox.Show("请选择插入商品类目的位置","温馨提示")
Else
    Dim id As Integer = nd.Index
    If nd.ParentNode Is Nothing Then
        nd = tr.Nodes.Insert("新类目",id+1)
    Else
        nd = nd.ParentNode.Nodes.Insert("新类目",id+1)
    End If
End If
tr.SelectedNode = nd
tr.Select
tr.BeginEdit

 


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


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

Dim tr As WinForm.TreeView = e.Form.Controls("商品类目")
Dim nd As WinForm.TreeNode = tr.SelectedNode
If nd Is Nothing Then
    MessageBox.Show("请选择插入商品类目的位置","温馨提示")
Else
    Dim id As Integer = nd.Index
    If nd.ParentNode Is Nothing Then
        nd = tr.Nodes.Insert("新类目",id+1)
    Else
        nd = nd.ParentNode.Nodes.Insert("新类目",id+1)
    End If
    tr.SelectedNode = nd
    tr.Select
    tr.BeginEdit
End If

 回到顶部