Re: [Gambas-user] String array empty after SUB (Gambas 2)

2012-02-26 Thread Rolf-Werner Eilert
Sometimes you're used to doing things this way or that way without thinking about what could be a better solution... :-) Never realized that functions can return whole arrays! Thanks for that hint. Rolf Am 23.02.2012 21:51, schrieb nando: > felder as STRING[] is a parameter passed into sub > I

[Gambas-user] R: rev. 4508 Gambas 3 - now it's impossible to choose project type... !

2012-02-26 Thread Ru Vuott
Hello Benoit, I updated with rev. 4511: the problem now is solved ! OK Bye Vuott --- Lun 27/2/12, Ru Vuott ha scritto: > Da: Ru Vuott > Oggetto: [Gambas-user] rev. 4508 Gambas 3 - now it's impossible to choose > project type... ! > A: "mailing list for gambas users" > Cc: gam...@users.sou

[Gambas-user] rev. 4508 Gambas 3 - now it's impossible to choose project type... !

2012-02-26 Thread Ru Vuott
Hello, I updated my Gambas 3 via SVN (rev. 4508). I noticed now I am NOT able to choose by mouse the "project type" (graphical application, QT graphical application, and so on), at first step when I want to write a new project. Now I can use only down-arrow and up-arrow of my keyboard to select

Re: [Gambas-user] Listcontainer/grid changes

2012-02-26 Thread richard terry
On Monday 27 February 2012 09:05:44 Benoît Minisini wrote: > Le 26/02/2012 22:23, richard terry a écrit : > > Hi Benoit. > > > > Came to work today having updated the latest svn and found I can't select > > any patients from my multiple pick list - which uses the list container - > > I have a cPati

Re: [Gambas-user] Memory problems with Gambas3

2012-02-26 Thread Benoît Minisini
Le 26/02/2012 22:49, Jussi Lahtinen a écrit : > I reverted week back in revision, but I cannot reproduce the bug anymore. > Maybe this has something to do with nvidia drivers, they don't seem to be > very stable. > > Jussi > If you see the gbx3 process memory becoming huge (in the KDE task manage

Re: [Gambas-user] Listcontainer/grid changes

2012-02-26 Thread Benoît Minisini
Le 26/02/2012 22:23, richard terry a écrit : > Hi Benoit. > > Came to work today having updated the latest svn and found I can't select any > patients from my multiple pick list - which uses the list container - I have a > cPatientRow into which I put the patient's photograph and their demographic

Re: [Gambas-user] Memory problems with Gambas3

2012-02-26 Thread Jussi Lahtinen
I reverted week back in revision, but I cannot reproduce the bug anymore. Maybe this has something to do with nvidia drivers, they don't seem to be very stable. Jussi On Sun, Feb 26, 2012 at 21:39, Jussi Lahtinen wrote: > Qt4, but I think it happened also with GTK+. > > I tried to repeat the b

[Gambas-user] Listcontainer/grid changes

2012-02-26 Thread richard terry
Hi Benoit. Came to work today having updated the latest svn and found I can't select any patients from my multiple pick list - which uses the list container - I have a cPatientRow into which I put the patient's photograph and their demographic details in a textlabel. These are then placed in th

Re: [Gambas-user] Memory

2012-02-26 Thread Fabien Bodard
Le 26 février 2012 21:28, Benoît Minisini a écrit : > Le 26/02/2012 21:14, Benoît Minisini a écrit : >> Le 26/02/2012 15:24, Fabien Bodard a écrit : >>> Why in these example the memory seem to be not freed ? >>> >> >> I have looked that for two hours, and my conclusion is that Gambas frees >> the

Re: [Gambas-user] Memory

2012-02-26 Thread Benoît Minisini
Le 26/02/2012 21:14, Benoît Minisini a écrit : > Le 26/02/2012 15:24, Fabien Bodard a écrit : >> Why in these example the memory seem to be not freed ? >> > > I have looked that for two hours, and my conclusion is that Gambas frees > the memory by telling the glibc to do so, but the glibc actually

Re: [Gambas-user] Memory

2012-02-26 Thread Fabien Bodard
Le 26 février 2012 21:14, Benoît Minisini a écrit : > Le 26/02/2012 15:24, Fabien Bodard a écrit : >> Why in these example the memory seem to be not freed ? >> > > I have looked that for two hours, and my conclusion is that Gambas frees > the memory by telling the glibc to do so, but the glibc act

Re: [Gambas-user] Memory

2012-02-26 Thread Benoît Minisini
Le 26/02/2012 15:24, Fabien Bodard a écrit : > Why in these example the memory seem to be not freed ? > I have looked that for two hours, and my conclusion is that Gambas frees the memory by telling the glibc to do so, but the glibc actually does not free it! So the leak does not come from Gamb

Re: [Gambas-user] Architecture of gambas binary files

2012-02-26 Thread Benoît Minisini
Le 26/02/2012 01:52, Sebi a écrit : > Hi, I would like to know if the gambas binaries created from the IDE, debian, > packages or any other type of compilation are architecture dependent or not. > i.e. Can a gambas binary compiled on a i386 be executed on amd64? > > Thanks! > Gambas bytecode is a

Re: [Gambas-user] Memory problems with Gambas3

2012-02-26 Thread Jussi Lahtinen
Qt4, but I think it happened also with GTK+. I tried to repeat the bug with GTK+ to make sure, but when I removed the workaround, nothing happened. And now nothing happens also with Qt4!?!? I don't know what has changed. System update... something with new Gambas revision...? No idea. Right now

Re: [Gambas-user] Memory problems with Gambas3

2012-02-26 Thread Benoît Minisini
Le 25/02/2012 23:06, Jussi Lahtinen a écrit : > I can't manage to isolate the problem and I can't send the source. > > Right now I'm using following workaround; > > Draw.Begin(tmpPic) > Draw.Image(imgKoko, 0, 0) > Draw.Image(imgKarVe, 0, 0) > Draw.Picture(picKohdistin, I.KarX - 12, I.KarY - 12) > D

[Gambas-user] Dim Keyword..I noticed something

2012-02-26 Thread nando
I am using some keywords as Integer vars DIM {event} AS INTEGER DIM {timer} AS INTEGER In the IDE, the second line automatically capitalized and highlighted as a keyword with keyword color. In Gambas2. Maybe it propagated forwards into Gambas 3 -Fernando --

[Gambas-user] Memory

2012-02-26 Thread Fabien Bodard
Why in these example the memory seem to be not freed ? -- Fabien Bodard Leak-0.0.1.tar.gz Description: GNU Zip compressed data -- Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of