|

DOWNLOAD
Reference
Code Snippets
Dim xml As ChilkatXml
Dim nextNode As ChilkatXml
Set xml = New ChilkatXml
xml.LoadXmlFile ("trouble.xml")
Set nextNode = xml.FirstChild()
While (Not (nextNode Is Nothing))
Text1.Text = Text1.Text & " Tag Name " & _
nextNode.Tag & " = '" & nextNode.Content & _
"' and has " & nextNode.NumAttributes & _
" Attributes." & vbCrLf
For i = 0 To nextNode.NumAttributes - 1
Text1.Text = Text1.Text & " " & _
nextNode.GetAttributeName(i) & " = " & _
nextNode.GetAttributeValue(i) & vbCrLf
Next
Set nextNode = nextNode.NextSibling()
Wend
|
Privacy
Statement. Copyright 2000-2012 Chilkat
Software, Inc. All rights reserved.
(Regarding the usage of the Android logo) Portions of this page are reproduced from work created and shared by Google
and used according to terms described in the Creative Commons
3.0 Attribution License.
Send feedback to support@chilkatsoft.com
Software components and libraries for Linux, MAC OS X, IOS (IPhone), Android™, Solaris, RHEL/CentOS Microsoft Windows 7, Vista, XP, 2000, 2003 Server, 2008 Server, and Windows 95/98/NT4.
|
|