[Gambas-user] failure on Startup of Gambas on Linux Mint Debian Edition 2

2016-03-14 Thread KKing
I've just had to set up a new unit and am using Linux Mint Debian Edition 2 usuing 32bit MATE, If I install Gambas via the LMDE2 Package Manager it installs gambas v3.5.4-2+b1 But when i try to start Gambas from the menu, I get a window This application has raised an unexpected error and must

Re: [Gambas-user] XMLDocument GetSingleNode or XPath support?

2016-03-10 Thread KKing
On 08/03/16 02:39, Adrien Prokopowicz wrote: > Le Mon, 29 Feb 2016 15:10:49 +0100, KKing <kicking...@gmail.com> a écrit: > >> On 17/02/16 09:15, KKing wrote: >>> does the XML component support a GetSingleNode method or allow an >>> XPa

Re: [Gambas-user] XMLDocument GetSingleNode or XPath support?

2016-02-29 Thread KKing
On 17/02/16 09:15, KKing wrote: > does the XML component support a GetSingleNode method or allow an > XPath to be used to obtain single nodes? > - - - - > is that a no then? -- Site24x7 APM Insight: Get Dee

Re: [Gambas-user] String conversion for printing

2016-02-18 Thread KKing
On 18/02/16 13:59, Roel Touwen wrote: > Hi All, > > I have an application that prints. The problem is that when I want to > print é it appears as é. > > So I think I need a string conversion like Conv$ but wherever I look, > there are no working samples. > > My charset of system and database are

[Gambas-user] XMLDocument GetSingleNode or XPath support?

2016-02-17 Thread KKing
does the XML component support a GetSingleNode method or allow an XPath to be used to obtain single nodes? - - - - -- Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM:

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 fi

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.

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

2016-02-16 Thread KKing
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 work with the whole document via DOM. Is this