Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Iteration in XML (3rd Example) VB.NET sample code showing how to iterate over nodes in an XML document Dim xml As New Chilkat.Xml()
xml.LoadXmlFile("companies.xml")
Dim numChildren As Integer
numChildren = xml.NumChildren
Dim i As Integer
For i = 0 To numChildren - 1
Dim record As Chilkat.Xml
record = xml.GetChild(i)
ListBox1.Items.Add(record.GetChildContent("name"))
Next
Important: The download for this
example does not contain the ChilkatDotNet.dll which |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.