Visual Basic Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

VB Examples

Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
RSA
S/MIME
SFTP
SMTP
Socket
Spider
SSH
SSH Key
SSH Tunnel
String
Tar
Unicode
Upload
XML
XMP
Zip Compression

More Examples...
Email Object
DKIM / DomainKey
NTLM
DH Key Exchange
DSA
FileAccess
RSS
Atom
Self-Extractor
Service
Bzip2
PPMD
Deflate
LZW


VB Strings
VB Byte Array

 

 

 

 

 

 

 

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-2010 Chilkat Software, Inc. All Rights Reserved.