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 (1st 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 company As Chilkat.Xml
company = xml.FirstChild()
While Not (company Is Nothing)
ListBox1.Items.Add(company.GetChildContent("name"))
company = company.NextSibling()
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.