F
Flomo Togba Kwele
I've defined the following snippet:
--
Private _docNav As XPathDocument = Nothing
Private _nav As XPathNavigator = Nothing
Public Function Process() As List(Of ICassIn)
_docNav = New XPathDocument(FileName)
_nav = _docNav.CreateNavigator
Me.RecursiveWalk(_nav, String.Empty)
Return _stdAddress
the XPathDocument statement errors with "The network path was not found". I copied the value of
FileName from the Immediate Window, opened a command window, and typed:
type value_of_FileName
The display responded with the contents of the XML file. What am I missing here? Why am I getting
this error?
TIA, Flomo
--
Private _docNav As XPathDocument = Nothing
Private _nav As XPathNavigator = Nothing
Public Function Process() As List(Of ICassIn)
_docNav = New XPathDocument(FileName)
_nav = _docNav.CreateNavigator
Me.RecursiveWalk(_nav, String.Empty)
Return _stdAddress
the XPathDocument statement errors with "The network path was not found". I copied the value of
FileName from the Immediate Window, opened a command window, and typed:
type value_of_FileName
The display responded with the contents of the XML file. What am I missing here? Why am I getting
this error?
TIA, Flomo