Visual Basic Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

VB Examples

Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
RSA Encryption
S/MIME
Socket
Spider
String
Tar
Unicode
Upload
XML
XMP
Zip Compression

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA


VB Strings
VB Byte Array

Unreleased...
Bzip2
LZW
Bz2
Icon

 

 

 

 

 

 

 

Sort XML Records in Visual Basic

Download Chilkat XML ActiveX

Source 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.