Re: [Gambas-user] XmlDocument.Open(filename) gives NULL [SOLVED]

2016-02-17 Thread KKing
On 17/02/16 00:32, Tobias Boege wrote: > On Tue, 16 Feb 2016, Tobias Boege wrote: >> On Tue, 16 Feb 2016, KKing wrote: >>> I'm using Gambas 3.5.4 on Linux Mint >>> >>> I want to use XmlDocument but can't seem to load an existing xml >>> document file. >>> >>> It errors on loads and just gives error

Re: [Gambas-user] XmlDocument.Open(filename) gives NULL

2016-02-16 Thread Tobias Boege
On Tue, 16 Feb 2016, Tobias Boege wrote: > On Tue, 16 Feb 2016, KKing wrote: > > I'm using Gambas 3.5.4 on Linux Mint > > > > I want to use XmlDocument but can't seem to load an existing xml > > document file. > > > > It errors on loads and just gives error text of "Null object" > > > > I can o

Re: [Gambas-user] XmlDocument.Open(filename) gives NULL

2016-02-16 Thread Tobias Boege
On Tue, 16 Feb 2016, KKing wrote: > I'm using Gambas 3.5.4 on Linux Mint > > I want to use XmlDocument but can't seem to load an existing xml > document file. > > It errors on loads and just gives error text of "Null object" > > I can open and read the same file via XmlReader, but I want to wor

Re: [Gambas-user] XmlDocument.Open(filename) gives NULL

2016-02-16 Thread KKing
<< *Try the following: - *Public Sub Form_Open() Dim hXmlDocument As XmlDocument hXmlDocument = New XmlDocument("/home/user1/test/myTest.xml") Print hXmlDocument.Content End >> the line < hXmlDocument = New XmlDocument("/home/user1/test/myTest.xml") > gives "Error loading file" error. I'v

Re: [Gambas-user] XmlDocument.Open(filename) gives NULL

2016-02-16 Thread Charlie
*Try the following: - *Public Sub Form_Open() Dim hXmlDocument As XmlDocument hXmlDocument = New XmlDocument("/home/user1/test/myTest.xml") Print hXmlDocument.Content End -- View this message in context: http://gambas.8142.n7.nabble.com/XmlDocument-Open-filename-gives-NULL-tp55456p55459.html