以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  怎样才能点击左边的树节点,打开右边对应的表  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=73683)

--  作者:fytea
--  发布时间:2015/8/24 19:20:00
--  怎样才能点击左边的树节点,打开右边对应的表

怎样才能点击左边的树节点,打开右边对应的表

图片点击可在新窗口打开查看

--  作者:大红袍
--  发布时间:2015/8/24 19:40:00
--  

编写 SelectedNode 事件

 

If e.Node.Text = "A" Then

    MainTable = Tables("表A")

ElseIf e.Node.Text = "B" then

    MainTable = Tables("表B")

End If


--  作者:fytea
--  发布时间:2015/8/25 12:11:00
--  

谢谢大红袍,按你的方法,成功!同时,理解了编辑目录树,和用这种方法建立目录树的区别