Microsoft
Software
Hardware
Network
Question : parsing XMLDOM
in the following code, How do i refer to a particular objFld within objFlds. I can do it using a counter...but id like to grab an objFld value by explicitly using the index.
Set objRows = objRoot.getElementsByTagNa
me("row")
For Each objRow in objRows
strXMLRctr = strXMLRctr + 1
Set objFlds = objRow.getElementsByTagNam
e("field")
For Each objFld in objFlds
strXMLFctr = strXMLFctr + 1
If strXMLFctr = 10 Then
response.write "Transaction Type - " & objFld.text & "*<br>"
End IF
response.write "*strXMLFctr - " & strXMLFctr & " - " & objFld.text & "*<br>"
Next
Next
Set objCols = Nothing
Answer : parsing XMLDOM
will this work???
objFldsValue = objRow.getElementsByTagNam
e("field")
.childNode
s(10).text
;
Random Solutions
compare two colums and extract the data to a new sheet excel 2007
Tables within a form
How do I uninstall Symantec Backup Exec 11d in Windows Server 2003??
Need to lock down SMTP traffic - Urgent!
"class StreamingApplet.RTApplet.c
lass not found" error occured
Office 2010 - changing printer properties seem to be ignored
New user setup in exchange 2007
Activesync "last synchronization time" one hour out
get selected (not all) checkboxes in jQuery
Visual Studio 2008 versus Expression Blend?