Re: treeview....need help!!
For the part about images instead of using the imgname
Dim oNode as node
set oNode=treeview1.nodes.add(, , "Name","Something","ImgName",TagName)
use the number of the image ie.
Dim oNode as node
set oNode=treeview1.nodes.add(, , "Name","Something",1,TagName)
Hope this helps
Tony.
Re: treeview....need help!!
Hi,
When i use this i get an error saying that the imagelist must be initialised.
Derek
Re: treeview....need help!!
There is an imagelist property for the treeview control. Set this it be whatever iamgelist you want.
Re: treeview....need help!!
Thanks alot TH1 for the help. It worked
Derek