Bonjour,
Je ne suis pas tres familier avec la lecture de fichiers xml, mais pourtant je pense avoir suivis la bonne demarche (mais ca ne marche pas sinon je ne serais pas en train d'ecrire ce post )
J'ai le fichier xml suivant :
<?xml version="1.0" encoding="utf-8" ?>
<ToolTip>
<table tag="some explanations about tables"/>
<view tag="some explanations about views"/>
</ToolTip>
et avec ce code j'essaye de lire un node:
Public Function LoadToolTip(ByVal Form As String, ByVal Tag As String)
As String
Dim xDoc As New XmlDocument
Try
Dim filePath As String = "../ToolTips/" & Form & ".xml"
xDoc.Load(filePath)
Dim xNodeList As XmlNodeList = xDoc.SelectNodes("/ToolTip/"
& Tag & "/@tag")
Return xNodeList.Item(0).Value
Catch ex As Exception
MsgBox(ex.ToString)
End Try
end function
mais xnodelist est toujours vide. Qu'est ce qui ne va pas ?
Merci
Partager