Visual Basic Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

VB Examples

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

More Examples...
Amazon S3
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

© 2000-2012 Chilkat Software, Inc. All Rights Reserved.