Re: [Gambas-user] rdir returns unwanted directories

2017-05-29 Thread Charlie
Tobias Boege-2 wrote > Instead of Mid(sTemp, RInStr(sTemp, "/") + 1) you may want to use the > appropriately named function File.Name(sTemp). Thanks Tobi, I didn't know that one. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/rdir-returns-unwa

[Gambas-user] Form listener

2017-05-29 Thread Leon Davis
Using Gambas v3.9.2 and GTK+3 I have added a form to another form: Dim NForm as Form NForm = new MyForm(ME) as "MyForm" The problem I'm having is none of the Key events, i.e. (keypress, keyup, keydown) for either form do anything. Also the Form_Resize for NForm doesn't fire. In my search I found

Re: [Gambas-user] odbc a way to know if a sql DDL was susessfully or not?

2017-05-29 Thread PICCORO McKAY Lenz
2017-05-24 14:30 GMT-04:00 PICCORO McKAY Lenz : > 2017-05-24 14:21 GMT-04:00 Cristiano Guadagnino : > >> PICCORO, the usual way to know if a sql statement succeeded or not is by >> checking the sqlcode. >> Negative sqlcodes indicate a problem. >> Odbc should support returning sqlcodes to the calle

[Gambas-user] wiki sintax "code gambas" highliter

2017-05-29 Thread PICCORO McKAY Lenz
i see that in wiki gamba only that highliter are available or there's some other more neutral? i have problems for some code examples that are not specific ofr gambas, and the wiki instructions documentations does not document all the wiki sintax (i noted the "[[ code gambas" and then end with "]

Re: [Gambas-user] wiki sintax "code gambas" highliter

2017-05-29 Thread PICCORO McKAY Lenz
i search the [GB.EVAL.HIGHLIGHT] svn code and seems are only 3 : gambas, sql and css? or how can i see that? something can iluminate me? and i documented in the wiki due seems are missing the highlighter code for wiki sintax! in the wiki docs! Lenz M

Re: [Gambas-user] Form listener

2017-05-29 Thread Tobias Boege
On Mon, 29 May 2017, Leon Davis wrote: > Using Gambas v3.9.2 and GTK+3 > > I have added a form to another form: > > Dim NForm as Form > NForm = new MyForm(ME) as "MyForm" > > The problem I'm having is none of the Key events, i.e. (keypress, keyup, > keydown) for either form do anything. Also the

Re: [Gambas-user] Form listener

2017-05-29 Thread Fabien Bodard
Dim NForm as Form NForm = new MyForm(ME) as "MyForm" the event will fire at : Public Sub MyForm_KeyPress() End 2017-05-29 17:34 GMT+02:00 Tobias Boege : > On Mon, 29 May 2017, Leon Davis wrote: >> Using Gambas v3.9.2 and GTK+3 >> >> I have added a form to another form: >> >> Dim NForm as Fo