以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  TreeView控件管理菜单  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=114626)

--  作者:yifan3429
--  发布时间:2018/2/11 15:54:00
--  TreeView控件管理菜单

4、
图片点击可在新窗口打开查看此主题相关图片如下:微信截图_20180211155213.png
图片点击可在新窗口打开查看
NodeMouseClick事件代码设置为:

If e.Node.Level = 1 Then
    MainTable
= Tables(e.Node.Text)
End
If


上面代码打开对应的表


我想单击后打开对应的窗口


--  作者:有点蓝
--  发布时间:2018/2/11 15:56:00
--  
参考:http://www.foxtable.com/webhelp/scr/2306.htm

If e.Node.Level = 1 Then
    MainTable
 = Tables(e.Node.Text)
Forms(e.Node.Text).Open()
End
 
If