以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  请教目录树的问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=19766)

--  作者:rjh4078
--  发布时间:2012/5/21 9:08:00
--  请教目录树的问题

根据某个数据表生成了一个目录树 现在有个问题 这个数据表有一列是逻辑性  “审核否(已审核/未审核)” 生成的目录树里显示FALSE TRUE 怎么样才能显示成  已审核 未审核?


--  作者:mr725
--  发布时间:2012/5/21 9:11:00
--  

用 replace 试试···


--  作者:狐狸爸爸
--  发布时间:2012/5/21 9:35:00
--  

参考:

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


 
Dim trv As WinForm.TreeView = e.Form.Controls("TreeView1")
For Each nd As WinForm.TreeNode In trv.AllNodes
    If nd.Text = "True" then
        nd.Text = "是"
    Elseif nd.Text = "False" then
        nd.Text = "否"
   end if
Next