Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Sort XML Records in Visual BasicSource Code Listing ' Sort the records by ArticleTitle
Private Sub Command5_Click()
Label5.Caption = "Working..."
Label5.Refresh
Dim xmlDoc As New ChilkatXml
' Load the input document.
xmlDoc.LoadXmlFile "crisp.xml"
' This method sorts the children by of xmlDoc
' by the contents of each child's ArticleTitle
' child node.
xmlDoc.SortRecordsByContent "ArticleTitle", 1
xmlDoc.SaveXml "crispSorted.xml"
Label5.Caption = "Done."
End Sub
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.