Re: [Gambas-user] someshort="xy" returns "Wanted short, got string instead"

2010-10-12 Thread Benoît Minisini
> > Second : on a mailing-list, you never answer a thread with a mail that has > no relation with it. So please post a new thread each time you start to > talk about a new subject. > Less rudely, I mean that 'someshort="xy"...' was not a good title, and made the all thread being lost in the mai

Re: [Gambas-user] someshort="xy" returns "Wanted short, got string instead"

2010-10-12 Thread Benoît Minisini
> I've had some trouble posting to the various GAMBAS mailing lists in > the past and so have been using the Nabble forum, which generally has > echoed my posted to the proper mailing list. It seems to not have been > working so well recently though. As such I'm reposting my last post > directly

Re: [Gambas-user] Questions for RegExp class

2010-10-12 Thread user
Thanks, yes that was it. On Tue, 2010-10-12 at 21:34 +0200, EA7DFH wrote: > El 12/10/10 20:47, user escribió: > > Hi, > > > > i try to implement a regular expression with this code > > > > - > > DIM sRegEx AS Regexp > > > > sRegEx.Compile("\"") > >

Re: [Gambas-user] Questions for RegExp class

2010-10-12 Thread EA7DFH
El 12/10/10 20:47, user escribió: > Hi, > > i try to implement a regular expression with this code > > - > DIM sRegEx AS Regexp > > sRegEx.Compile("\"") > sRegEx.Exec(Global.txtUpdateOptions) > - > > but in li

[Gambas-user] Questions for RegExp class

2010-10-12 Thread user
Hi, i try to implement a regular expression with this code - DIM sRegEx AS Regexp sRegEx.Compile("\"") sRegEx.Exec(Global.txtUpdateOptions) - but in line of "compile" i get a NULL object. why? -