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
calling package/proc
publishing Terminal Server in ISA 2006
forcing a delay on a function in vb.net
system deals
Unique Records with Excel
How to convet a CString to unsigned char * const
mssql: how would you construct a where clause on this situation?
How to choose better iSCSI server software for cluster
start win xp without login
Simple code issue with synchronized comboboxes in MS Access