以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何获取导航栏的页面标题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=81406)

--  作者:huazhencong
--  发布时间:2016/2/26 22:23:00
--  如何获取导航栏的页面标题
请教获取导航栏的页面标题的代码?
--  作者:Hyphen
--  发布时间:2016/2/27 10:01:00
--  
http://www.foxtable.com/help/topics/0880.htm

Dim NavBar1 As WinForm.NavBar = e.Form.Controls("NavBar1")

msgbox(NavBar1.SelectedPage.HeaderText)

--  作者:huazhencong
--  发布时间:2016/2/27 12:37:00
--  
谢谢!