VB.NET Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

VB.NET Examples

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

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

Byte Array
VB.NET FTPS
System.IO

Unreleased...
Bzip2
LZW
Icon

 

 

 

 

 

 

Add Child Tree

Add a child tree to an existing XML document.

Download Chilkat .NET for 2.0 / 3.5 Framework

Download Chilkat .NET for 64-bit 2.0 / 3.5 Framework (x64)

Download Chilkat .NET for 1.0 / 1.1 Framework

'  First, build a sample XML document:
Dim xml As New Chilkat.Xml()
xml.Tag = "stocks"

Dim xmlM As Chilkat.Xml
xmlM = xml.NewChild("Microsoft","")
xmlM.NewChild2("symbol","MSFT")
xmlM.NewChild2("recentPrice","28.00")

Dim xmlG As Chilkat.Xml
xmlG = xml.NewChild("Google","")
xmlG.NewChild2("symbol","GOOG")
xmlG.NewChild2("recentPrice","440.00")

'  Display the XML so far...
TextBox1.Text = TextBox1.Text & xml.GetXml() & vbCrLf

'  This is the XML displayed:
'  <stocks>
'      <Microsoft>
'          <symbol>MSFT</symbol>
'          <recentPrice>28.00</recentPrice>
'      </Microsoft>
'      <Google>
'          <symbol>GOOG</symbol>
'          <recentPrice>440.00</recentPrice>
'      </Google>
'  </stocks>

'  We want to add Yahoo to it:
Dim xYahoo As String
xYahoo = "<Yahoo><symbol>YHOO</symbol><recentPrice>28.00</recentPrice></Yahoo>"

Dim xmlYahoo As New Chilkat.Xml()
xmlYahoo.LoadXml(xYahoo)

'  Add the xmlYahoo document just under the root node of
'  our original XML document:
xml.AddChildTree(xmlYahoo)

'  Display the result:
TextBox1.Text = TextBox1.Text & xml.GetXml() & vbCrLf



 

Need a specific example? Send a request to support@chilkatsoft.com

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

Mail Component · XML Parser