Re: [Gambas-user] Preprocessor in the Gambas 3 compiler

2010-12-19 Thread Ricardo Díaz Martín
> > - SYSTEM, that returns the current OS ("Linux", "FreeBSD", "MacOSX"...) Are you thinking to port gambas3 to MacOSX? Regards, Ricardo Díaz 2010/12/18 Jussi Lahtinen > Nice! > But now I have to consider doing only one version that handles both 32 and > 64 bit architecture... > > Jussi > > >

Re: [Gambas-user] Did anyone have a script to record webcame picture in video files

2010-12-19 Thread firman
okay i'll send u entire project, but which one do u need, Files project in package program or just All script in main form?? thank's Jussi Lahtinen wrote: > > It is easier to help if you send your whole project. > I can't see any handling for CatProcess. > > Jussi > > > On Sat, Dec 18, 20

Re: [Gambas-user] Bug with IsInteger?

2010-12-19 Thread Jussi Lahtinen
$ echo $LANG en_GB.utf8 $ echo $LC_ALL So, LC_ALL doesn't seem to contain anything. Jussi 2010/12/19 Benoît Minisini > > Also this: > > $ gbx3 -e 'IsInteger("12 + 5.4")' > > > > Gives; True > > > > > > What LANG=C exactly does? > > > > Jussi > > > > It tells programs to run with the "C" (i.e

Re: [Gambas-user] Bug with IsInteger?

2010-12-19 Thread Benoît Minisini
> Also this: > $ gbx3 -e 'IsInteger("12 + 5.4")' > > Gives; True > > > What LANG=C exactly does? > > Jussi > It tells programs to run with the "C" (i.e. default US) localization. So the problem apparently comes from the localization. What is the contents of LANG and LC_ALL on your system? T

Re: [Gambas-user] Gambas 3 advancement

2010-12-19 Thread Benoît Minisini
> > Pipes should not return EOF when the pipe is not closed. But they should > return EOF when the other side closes. > Why ? EOF() actually means "there is nothing to read anymore", which is the important needed information. If Eof() returns TRUE only when the pipe is closed: 1) How do you

Re: [Gambas-user] Gambas 3 advancement

2010-12-19 Thread Doriano Blengino
Benoît Minisini ha scritto: > Hi, > > I have currently the feeling that I have to correctly fix the "ValueBox" > problem (the way it is implemented, and more generally the way compound > controls raise events), and then I will able to make a release candidate of > Gambas 3. > > Tell me the impor

Re: [Gambas-user] Bug with IsInteger?

2010-12-19 Thread Jussi Lahtinen
Also this: $ gbx3 -e 'IsInteger("12 + 5.4")' Gives; True What LANG=C exactly does? Jussi On Sun, Dec 19, 2010 at 18:57, Jussi Lahtinen wrote: > > LANG=C gbx3 -e 'IsInteger("12 + 5.4")' > Gives; False > > In IDE console: > ? IsInteger("12 + 5.4") > True > > > Are you sure that you have comp

[Gambas-user] Gambas 3 advancement

2010-12-19 Thread Benoît Minisini
Hi, I have currently the feeling that I have to correctly fix the "ValueBox" problem (the way it is implemented, and more generally the way compound controls raise events), and then I will able to make a release candidate of Gambas 3. Tell me the important things I forgot, because I am sure I

Re: [Gambas-user] Bug with IsInteger?

2010-12-19 Thread Jussi Lahtinen
LANG=C gbx3 -e 'IsInteger("12 + 5.4")' Gives; False In IDE console: ? IsInteger("12 + 5.4") True Are you sure that you have compiled and installed the correct version? > > gbr3 --version Gives always 2.99.0... But "svn info" says sources are at revision 3377. I just recompiled them and now gbx3

Re: [Gambas-user] painting graph to image continuously

2010-12-19 Thread Fabien Bodard
all the draw need to be done in the drawing area witch have the property painted to true (for use the paint class) never draw from the outside paint.begin is form images normally if your program have a good desing all the draw can be done in the _draw event. It's like a game loop 2010/12/19 wal

Re: [Gambas-user] painting graph to image continuously

2010-12-19 Thread wally
On Sunday 19 December 2010 11:33:39 Fabien Bodard wrote: > This is the vectorial vertion (use the painter class) > > 2010/12/18 wally : > > On Saturday 18 December 2010 14:44:22 Fabien Bodard wrote: > >> ok wally this is the full demo of what you want to do, and what you > >> need to do for that.

Re: [Gambas-user] painting graph to image continuously

2010-12-19 Thread Fabien Bodard
This is the vectorial vertion (use the painter class) 2010/12/18 wally : > On Saturday 18 December 2010 14:44:22 Fabien Bodard wrote: >> ok wally this is the full demo of what you want to do, and what you >> need to do for that. I use like often in gambas >> a data/view model ... the drawingarea i