M
Maileen
Hi,
I have a XML file which consists of several elements and I would like to
retrieve the value of 1 element particularly.
for example :
....
<Database_Location>
C:\test\db1.mdb
</Database_Location>
I try to get the value of "C:\test\db1.mdb" with the following code :
While XmlRead.Read
If (XmlNodeType.Element) Then
If (XmlRead.Name = "Database_Location") Then
MsgBox("before : " & XmlRead.Value)
End If
End If
End While
but every time I get the Value empty...why ?
thanks a lot,
Maileen
I have a XML file which consists of several elements and I would like to
retrieve the value of 1 element particularly.
for example :
....
<Database_Location>
C:\test\db1.mdb
</Database_Location>
I try to get the value of "C:\test\db1.mdb" with the following code :
While XmlRead.Read
If (XmlNodeType.Element) Then
If (XmlRead.Name = "Database_Location") Then
MsgBox("before : " & XmlRead.Value)
End If
End If
End While
but every time I get the Value empty...why ?
thanks a lot,
Maileen