473,808 Members | 2,861 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Treeview to XML in VB.net

I have seen lots of posts for populating a treeview from a XML file but
haven't been able to find/figure out how to go from a treeview to XML.
Nov 21 '05 #1
2 14304
look on right side of website:
http://www.vbdotnetheaven.com/

C. A. Kelly wrote:
I have seen lots of posts for populating a treeview from a XML file but
haven't been able to find/figure out how to go from a treeview to XML.

Nov 21 '05 #2
Friend Module Module1
Public Sub kcXML2Tree(ByVa l XMLFilepath As String, ByVal kcTreeview As
TreeView)
Dim XMLDoc As New Xml.XmlDocument
Dim XMLNode As Xml.XmlNode
Dim ParentNode As TreeNode

If kcTreeview Is Nothing Then
Throw New ArgumentNullExc eption("TreeVie w")
End If

Try
XMLDoc.Load(XML Filepath)
Catch e As Exception
Throw New Exception(e.Mes sage)
End Try

For Each XMLNode In XMLDoc.Document Element.ChildNo des
ParentNode = kcTreeview.Node s.Add(XMLNode.A ttributes(0).Va lue)
If XMLNode.ChildNo des.Count > 0 Then
AddChildNodes(X MLNode, ParentNode)
End If
Next
End Sub

Private Sub AddChildNodes(B yVal XMLNode As Xml.XmlNode, ByVal ParentNode
As TreeNode)

Dim ChildXMLNode As Xml.XmlNode
Dim NewNode As TreeNode

For Each ChildXMLNode In XMLNode.ChildNo des
NewNode = ParentNode.Node s.Add(ChildXMLN ode.Attributes( 0).Value)

If ChildXMLNode.Ch ildNodes.Count > 0 Then
AddChildNodes(C hildXMLNode, NewNode)
End If
Next

End Sub

Public Sub kcTree2XML(ByVa l XMLFilePath As String, ByVal kcTreeview As
TreeView)
Dim XMLDoc As New Xml.XmlDocument
Dim RootNode As TreeNode
Dim NewXMLNode As Xml.XmlNode
Dim XMLAttribute As Xml.XmlAttribut e

XMLDoc.LoadXml( ("<?xml version='1.0' ?>" & _
"<XMLTreeVi ew>" & _
"</XMLTreeView>"))
For Each RootNode In kcTreeview.Node s
NewXMLNode = XMLDoc.CreateNo de(Xml.XmlNodeT ype.Element, "Node",
"Node", "")
XMLAttribute = XMLDoc.CreateAt tribute("name")
XMLAttribute.Va lue = RootNode.Text

NewXMLNode.Attr ibutes.Append(X MLAttribute)
XMLDoc.Document Element.AppendC hild(NewXMLNode )

SaveChildNodes( NewXMLNode, RootNode, XMLDoc)
Next

XMLDoc.Save(XML FilePath)

End Sub

Private Sub SaveChildNodes( ByVal XMLNode As Xml.XmlNode, ByVal
ParentNode As TreeNode, ByVal XMLDoc As Xml.XmlDocument )
Dim ChildNode As TreeNode
Dim NewXMLNode As Xml.XmlNode
Dim XMLAttribute As Xml.XmlAttribut e

For Each ChildNode In ParentNode.Node s
NewXMLNode = XMLDoc.CreateNo de(Xml.XmlNodeT ype.Element, "Node",
"Node", "")
XMLAttribute = XMLDoc.CreateAt tribute("name")
XMLAttribute.Va lue = ChildNode.Text

NewXMLNode.Attr ibutes.Append(X MLAttribute)
XMLNode.AppendC hild(NewXMLNode )

SaveChildNodes( NewXMLNode, ChildNode, XMLDoc)
Next

End Sub
End Module
"Supra" <su***@domain.i nvalid> wrote in message
news:JL******** ************@ro gers.com...
look on right side of website:
http://www.vbdotnetheaven.com/

C. A. Kelly wrote:
I have seen lots of posts for populating a treeview from a XML file but
haven't been able to find/figure out how to go from a treeview to XML.

Nov 21 '05 #3

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

Similar topics

42
11565
by: lauren quantrell | last post by:
So many postings on not to use the treeview control, but nothing recently. Is it safe to swim there yet with Access 2000-Access 2003?
5
19901
by: SoKool | last post by:
Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control. I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table. Many thanks.
1
6683
by: paradox | last post by:
I want to have a TreeView that shows an image on some items, but not all. Basically, if a certain condition is true, a caution icon is placed next to the treeview item. The problem is that, by adding a ImageList to the TreeView, the ImageIndex property of the items in the TreeView defaults to 0. I could put a blank icon in the ImageList and make it the 0 index image, however, this makes an ugly space. Would I have to create my own...
3
2837
by: Peter | last post by:
Hello, We are inserting a side menu to our application using a class that is writing HTML on all our pages. This is a part of the code as an example: writer.Write(" <table WIDTH=""100%"" BORDER=""0"" CELLSPACING=""0"" CELLPADDING=""0"" ID=""Table1""> " & vbNewLine) writer.Write(" <tr>" & vbNewLine) writer.Write(" <td>" & vbNewLine)
6
4935
by: L.M | last post by:
Hello, I knew how to use the treeview under VB6. After migrating to .NET, well, I'm lost. I try to add a new node, either to the same level or as a child to a selected node in the treeview. However, either it only add it to the root level or it only add it on level below, doesn't matter what I select. And in some case, I just get an exception.
14
15106
by: Mr.D | last post by:
How do I save/load the contents of a Treeview to a file? I have found several good examples written i VB6, but not a single one for VB.NET. Please help. ---- Tim
3
3833
by: christof | last post by:
I've got a really easy problem, please help me: There are two pages in one I'm creating a TreeView like that: TreeView dbTree = new TreeView(); TreeNode dbTreeRoot = new TreeNode("Root"); dbTree.Nodes.Add(dbTreeRoot); .. ..
2
7503
by: Tymbow | last post by:
I'm building a web application that is analogous to the Windows XP file explorer in function. The left column contains a TreeView, and the right column a DataGrid populated by selecting TreeView nodes. The TreeView populates dynamically as there are a significant number of nodes. The DataGrid displays both the items and the nodes from the TreeView. Using the explorer analogy this means the TreeView shows folders, and the DataGrid folders...
1
693
by: kvicky | last post by:
I am trying to load child nodes to a TreeNode in a TreeView in a ASP.net web application. The Treeview with parent nodes are loaded on a Page_load while doing if( ! ISPostback ) and then in the Treeview event I am dynamically trying to load the child nodes to the exisisting TreeView. The problem is since the TreeView is being loaded on not a Postback, I am unable to refer to any node in the TreeView event. Can anybody tell me how to...
8
12787
by: Matt MacDonald | last post by:
Hi All, I have a form that displays hierarchical categories in a treeview. Ok so far so good. What I was to do is have users be able to select a node in the treeview as part of filling out the form. I only want to allow single selection, so using checkboxes is out of the question. It works as is, but it makes the form very cumbersome if every time that a user selects a node, the whole page has to reload. Is there a way to have a node...
0
9721
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9600
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10631
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10374
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10374
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10114
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5686
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4331
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.