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 (2nd 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 b As Boolean
b = xml.FirstChild2()
While (b)
ListBox1.Items.Add(xml.GetChildContent("name"))
b = xml.NextSibling2()
End While
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-2007 Chilkat Software, Inc. All Rights Reserved.