Re: [Gambas-user] Cannot load class 'Balloon'

2010-05-03 Thread EA7DFH
Fabien Bodard escribió: on ubuntu 10.04 work fine for me too have you tryed to remove the all the svn and start from scratch ? 2010/4/28 Matteo Pasotti matteo.paso...@gmail.com: Il 28/04/2010 19:04, charlesg ha scritto: Hi I fixed the balloon error by loading Ubuntu package

Re: [Gambas-user] Cannot load class 'Balloon'

2010-05-03 Thread Benoît Minisini
Fabien Bodard escribió: on ubuntu 10.04 work fine for me too have you tryed to remove the all the svn and start from scratch ? 2010/4/28 Matteo Pasotti matteo.paso...@gmail.com: Il 28/04/2010 19:04, charlesg ha scritto: Hi I fixed the balloon error by loading Ubuntu package

Re: [Gambas-user] Cannot load class 'Balloon'

2010-05-03 Thread Benoît Minisini
Here there are. Also included a custom bash script I made to automate this task. Regards, Jesus OK, I think I got it. The problem should be fixed in revision #2928. Regards, -- Benoît Minisini --

Re: [Gambas-user] Gambas-user Digest, Vol 48, Issue 1

2010-05-03 Thread igsteele
R0xxrxXxzDzXxrrZRxRxrDXrrerRx -- -Original Message- From: gambas-user-requ...@lists.sourceforge.net Date: Mon, 03 May 2010 09:05:09 To: gambas-user@lists.sourceforge.net Subject: Gambas-user Digest, Vol 48, Issue 1 Send Gambas-user mailing list submissions to

Re: [Gambas-user] Wrong error message

2010-05-03 Thread Benoît Minisini
Hi! There's minor bug. Overflow with concatenate operator causes wrong error message. You can reproduce the bug with this code: Dim ii As Integer Dim jj As Integer For ii = 9 To 0 Step -1 jj = ii --- Wanted Integer got String instead. Next Gambas 3 rev 2879 @ Ubuntu 9.10 64bit

Re: [Gambas-user] Wrong error message

2010-05-03 Thread Doriano Blengino
Benoît Minisini ha scritto: Hi! There's minor bug. Overflow with concatenate operator causes wrong error message. You can reproduce the bug with this code: Dim ii As Integer Dim jj As Integer For ii = 9 To 0 Step -1 jj= ii--- Wanted Integer got String instead. Next Gambas 3 rev 2879 @

Re: [Gambas-user] Wrong error message

2010-05-03 Thread Benoît Minisini
Benoît Minisini ha scritto: Hi! There's minor bug. Overflow with concatenate operator causes wrong error message. You can reproduce the bug with this code: Dim ii As Integer Dim jj As Integer For ii = 9 To 0 Step -1 jj= ii--- Wanted Integer got String instead. Next

Re: [Gambas-user] Wrong error message

2010-05-03 Thread Jussi Lahtinen
For information, the previous code is equivalent to: Dim ii As Integer Dim jj As Integer For ii = 9 To 0 Step -1  jj = CInt(CStr(jj) CStr(ii)) Next Yes, exactly. Sometimes it is convenient to add numbers this way. I just didn't see the trouble to write conversion functions CInt and