|
-
Sep 28th, 2006, 09:47 AM
#1
Re: help with XML
The code you show can't be your actual code. Can you show the actual code please?
-
Sep 28th, 2006, 09:56 AM
#2
Thread Starter
Lively Member
Re: help with XML
here you go:
Dim xmlDocIssueNumber As DOMDocument
Set xmlDocIssueNumber = New DOMDocument
xmlDocIssueNumber.preserveWhiteSpace = True
xmlDocIssueNumber.loadXML (cIssueNoXML)
xmlDocIssueNumber.Save ("C:\Documents and Settings\Simon Pogrebinsky\Desktop\xmlSave\issueNo.xml")
Set nodes = xmlDocIssueNumber.selectNodes("//NewDataSet/AUTONUMBTABLE/AUTOFLAG")
For i = 0 To nodes.Length - 1
If Not (nodes.NextNode.selectSingleNode("AUTOFLAG") Is Nothing) Then strFaultFlag = ((nodes.NextNode.selectSingleNode("AUTOFLAG").nodeTypedValue))
Next
MsgBox (strFaultFlag)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|