Re: [Gambas-user] Minor bug with READ & WRITE commands?

2009-01-15 Thread Benoit Minisini
On jeudi 15 janvier 2009, Jussi Lahtinen wrote: > Hi! > > Here is my test code (first with errors) for pass array of objects > byref to external function: > > PUBLIC SUB Button4_Click() > DIM ii AS Integer > DIM pResult AS Pointer > DIM fResult AS NEW Object[] > DIM aa AS Class1 > > FOR ii = 0 TO 9

Re: [Gambas-user] Spacing = True Question

2009-01-15 Thread Benoit Minisini
On vendredi 16 janvier 2009, richard terry wrote: > Wonder if someone could clarify this for me. > > Previously spacing was (and the documention in the IDE still says it is) > the number of pixels separating child controls. If this is so, how does one > give this a value? > > Personally I think usi

[Gambas-user] Spacing = True Question

2009-01-15 Thread richard terry
Wonder if someone could clarify this for me. Previously spacing was (and the documention in the IDE still says it is) the number of pixels separating child controls. If this is so, how does one give this a value? Personally I think using spacing like this is a backwards step for gambas. This l

Re: [Gambas-user] Component Web Browser

2009-01-15 Thread Benoit Minisini
On jeudi 15 janvier 2009, Rob wrote: > On Thursday 15 January 2009 02:24, andy wrote: > > It seems to me some differences in images rendering , comparing with > > same html page in Firefox. It dipends from different backend (Gecko and > > Kde)? > > > > Do u think to improve this component? Thankyou

[Gambas-user] Minor bug with READ & WRITE commands?

2009-01-15 Thread Jussi Lahtinen
Hi! Here is my test code (first with errors) for pass array of objects byref to external function: PUBLIC SUB Button4_Click() DIM ii AS Integer DIM pResult AS Pointer DIM fResult AS NEW Object[] DIM aa AS Class1 FOR ii = 0 TO 9 aa = NEW Class1 aa.x = 100 aa.y = 200 fResult.Add(aa) NEXT pResult

Re: [Gambas-user] Component Web Browser

2009-01-15 Thread Rob
On Thursday 15 January 2009 02:24, andy wrote: > It seems to me some differences in images rendering , comparing with > same html page in Firefox. It dipends from different backend (Gecko and > Kde)? > > Do u think to improve this component? Thankyou The gb.qt.kde.html component uses KHTML to rend

Re: [Gambas-user] Error on gb.db.mysql: Commands out of sync; you can't run this command now

2009-01-15 Thread David Villalobos Cambronero
Here is a background: http://dev.mysql.com/doc/refman/5.0/en/mysql-use-result.html Please tell me what do you think... Regards -- David - Original Message From: Benoit Minisini To: mailing list for gambas users Sent: Thursday, January 15, 2009 8:02:09 AM Subject: Re: [Gambas-us

Re: [Gambas-user] Error on gb.db.mysql: Commands out of sync; you can't run this command now

2009-01-15 Thread David Villalobos Cambronero
No, it is handled in the same way, since if you execute both statements in the mysql console, they run perfectly. But let me check some thing, what I will do is to try to understand your code, if I don't know something I will ask you. Regards -- David - Original Message From: Ben

Re: [Gambas-user] New bugs in OpenGl

2009-01-15 Thread Jaap Cramer
> On jeudi 15 janvier 2009, Jaap Cramer wrote: > > Hi > > > > I discovered a new bug in the OpenGl module. > > I use gl.Color4f(0, 1, 0, iTriangleAlpha) to color a object. The variable > > iTriangleAlpha does not change the opacity but the size. (see attachment, > > use slider) > > I see nothing

Re: [Gambas-user] Error on gb.db.mysql: Commands out of sync; you can't run this command now

2009-01-15 Thread Benoit Minisini
On jeudi 15 janvier 2009, David Villalobos Cambronero wrote: > Sure, here it is: > > mysql: 0x7b3680: CALL `sp_Procedimientos` > mysql: 0x7b3680: CALL `sp_Tablas` > > > And it fails on the second CALL, showing the messasage I sent you. > > Atacched the code form my form. > > > Reagards > > > -- > D

Re: [Gambas-user] Error on gb.db.mysql: Commands out of sync; you can't run this command now

2009-01-15 Thread David Villalobos Cambronero
Sure, here it is: mysql: 0x7b3680: CALL `sp_Procedimientos` mysql: 0x7b3680: CALL `sp_Tablas` And it fails on the second CALL, showing the messasage I sent you. Atacched the code form my form. Reagards -- David - Original Message From: Benoit Minisini To: mailing list for gamba

Re: [Gambas-user] New bugs in OpenGl

2009-01-15 Thread Benoit Minisini
On jeudi 15 janvier 2009, Jaap Cramer wrote: > Hi > > I discovered a new bug in the OpenGl module. > I use gl.Color4f(0, 1, 0, iTriangleAlpha) to color a object. The variable > iTriangleAlpha does not change the opacity but the size. (see attachment, > use slider) I see nothing wrong in the source