473,473 Members | 1,965 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Please Help! IE Treeview control

Hello All,

I having a small problem. I wrote a procedure to add nodes
to my IE Treeview control and all nodes are added. Now,
the problem is that all the nodes are added in the Root
node. Some of the nodes should be added as a child node.
Here is my procedure, Can someone troubleshoot this code
please:

Dim strDirectories As String()
Dim strDirectory As String
Dim strFile As String
Dim nodDirectory As TreeNode
Dim nodFile As TreeNode

strDirectories = Directory.GetDirectories(Server.MapPath
("PDF"))

For Each strDirectory In strDirectories
nodDirectory = New TreeNode
nodDirectory.Text = strDirectory.Substring
(strDirectory.LastIndexOf("\") + 1)
Me.tvMenu.Nodes.Add(nodDirectory)
For Each strFile In Directory.GetFiles
(strDirectory)
nodFile = New TreeNode
nodFile.Text = strFile.Substring
(strFile.LastIndexOf("\") + 1)
Me.tvMenu.Nodes.AddAt(strDirectory,
nodFile)
Next
Next

Jul 21 '05 #1
1 1355

<an*******@discussions.microsoft.com> wrote in message
news:e5****************************@phx.gbl...
Hello All,

I having a small problem. I wrote a procedure to add nodes
to my IE Treeview control and all nodes are added. Now,
the problem is that all the nodes are added in the Root
node. Some of the nodes should be added as a child node.
Here is my procedure, Can someone troubleshoot this code
please:

Dim strDirectories As String()
Dim strDirectory As String
Dim strFile As String
Dim nodDirectory As TreeNode
Dim nodFile As TreeNode

strDirectories = Directory.GetDirectories(Server.MapPath
("PDF"))

For Each strDirectory In strDirectories
nodDirectory = New TreeNode
nodDirectory.Text = strDirectory.Substring
(strDirectory.LastIndexOf("\") + 1)
Do this:
MyTmpNode = new TreeNode(nodeDirectory)

Me.tvMenu.Nodes.Add(MyTmpNode) For Each strFile In Directory.GetFiles
(strDirectory)
nodFile = New TreeNode
nodFile.Text = strFile.Substring
(strFile.LastIndexOf("\") + 1)
MyTmpNode.Nodes.Add(nodFile)
Me.tvMenu.Nodes.AddAt(strDirectory,
nodFile)
If I understand this line currectly, this tells the tree view to insert a
new node after a node with the text strDirectory AT THE SAME LEVEL.
Next
Next

Jul 21 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: duikboot | last post by:
Hi all, I'm trying to export a view tables from a Oracle database to a Mysql database. I create insert statements (they look alright), but it all goes wrong when I try to execute them in Mysql,...
0
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
7
by: Alan Bashy | last post by:
Please, guys, In need help with this. It is due in the next week. Please, help me to implement the functions in this programm especially the first three constructor. I need them guys. Please, help...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
7
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
13
by: Joner | last post by:
Hello, I'm having trouble with a little programme of mine where I connect to an access database. It seems to connect fine, and disconnect fine, but then after it won't reconnect, I get the error...
13
by: sd00 | last post by:
Hi all, can someone give me some coding help with a problem that *should* be really simple, yet I'm struggling with. I need the difference between 2 times (Target / Actual) However, these times...
0
by: 2Barter.net | last post by:
newsmail@reuters.uk.ed10.net Fwd: Money for New Orleans, AL & GA Inbox Reply Reply to all Forward Print Add 2Barter.net to Contacts list Delete this message Report phishing Show original
6
by: jenipriya | last post by:
Hi all... its very urgent.. please........i m a beginner in oracle.... Anyone please help me wit dese codes i hv tried... and correct the errors... The table structures i hav Employee (EmpID,...
5
by: tabani | last post by:
I wrote the program and its not giving me correct answer can any one help me with that please and specify my mistake please it will be highly appreciable... The error arrives from option 'a' it asks...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.