Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Treeview Not visible in the browser

Status
Not open for further replies.

ganusha

Programmer
May 1, 2002
28
US
i'm using a microsoft treeview control 6.0.
i'm adding 2 nodes to it.but i can see it neither in the design mode in Visual interdev nor when i'm calling the page.
Please help.
Thanks
 
if you post the code you are using to poulate the treeview maybe we can help you! Jamie Gillespie
j-gillespie@s-cheshire.ac.uk
 
I first placed a treeview control from the activeX control toolbox in VisualInterdev and then coded the foll:


<SCRIPT language=&quot;Vbscript&quot;>
dim nodex,nodex1
TreeView1.BorderStyle=1
set nodex=TreeView1.Nodes.Add
(,,&quot;Address&quot;,&quot;Address&quot;)
set nodex1=TreeView1.Nodes.Add(&quot;Address&quot;,tvwchild,&quot;New&quot;,&quot;New&quot;)
TreeView1.Enabled=true

</SCRIPT>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top