以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]任务栏  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=86435)

--  作者:江南小城
--  发布时间:2016/6/17 11:43:00
--  [求助]任务栏
老师,下面的任务栏按钮怎样添加图标。

With tpb.Pages("通讯录").Links
    .Add("通讯录", "通讯录")
    .Add("电子通信", "电子通信")
End With


--  作者:大红袍
--  发布时间:2016/6/17 11:52:00
--  

第三个参数,填写图标的路径

 

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

 

With tpb.Pages("通讯录").Links
    .Add("通讯录", "通讯录", ProjectPath & "123.ico")
    .Add("电子通信", "电子通信", "123.ico") \'如果图片已经在images文件夹下
End With

--  作者:江南小城
--  发布时间:2016/6/17 11:58:00
--  
谢谢老师