Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
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
|
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.