[Gambas-user] Can't enable some components of Gambas 3 on Ubuntu 11.10

2012-01-02 Thread Liu Yongjian
I have install the following required packages : build-essential autoconf libbz2-dev libfbclient2 libmysqlclient-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev libgtk2.0-dev libldap2-dev libcurl4-gnutls-dev libgtkglext1-dev libpcre3-dev libsdl-sound1.2-dev libsdl-mixer1.2-dev libsdl-ima

Re: [Gambas-user] Unable to save a GIF picture

2012-01-02 Thread Benoît Minisini
Le 02/01/2012 23:49, Ru Vuott a écrit : >> if i remember well the Gif isn't a free format > > > ...ok, Fabien, but I see this format in the Documentation: > > http://gambasdoc.org/help/comp/gb.image.io/image/save?v3 > > ...maybe a misprint ? > > Ciao > Paolo > Actually, gb.image.io relies on the g

Re: [Gambas-user] Unable to save a GIF picture

2012-01-02 Thread Ru Vuott
> if i remember well the Gif isn't a free format ...ok, Fabien, but I see this format in the Documentation: http://gambasdoc.org/help/comp/gb.image.io/image/save?v3 ...maybe a misprint ? Ciao Paolo --- Lun 2/1/12, Fabien Bodard ha scritto: > Da: Fabien Bodard > Oggetto: Re: [Gambas-use

Re: [Gambas-user] Unable to save a GIF picture

2012-01-02 Thread Fabien Bodard
2012/1/2 Ru Vuott : > Hello, > > ...I try: > > $Screenshot = Desktop.Screenshot() > $Screenshot.Save("meaImago.gif") if i remember well the Gif isn't a free format > > but with .gif there's a problemem: > > I have this error: "Unable to save picture" > > > Regards > Paolo > > > >

Re: [Gambas-user] Running programs from terminal and by double clicking.

2012-01-02 Thread Jussi Lahtinen
Sorry, not Ubuntu! I'm using Xubuntu. Jussi On Mon, Jan 2, 2012 at 20:24, Jussi Lahtinen wrote: > Hi! > Strange problem. For some reason I'm not able to start child processes if > the parent program is launched by double clicking. > This is very specific issue. Firstly child program must be ma

[Gambas-user] Unable to save a GIF picture

2012-01-02 Thread Ru Vuott
Hello, ...I try: $Screenshot = Desktop.Screenshot() $Screenshot.Save("meaImago.gif") but with .gif there's a problemem: I have this error: "Unable to save picture" Regards Paolo -- Ridiculously easy VDI. With Cit

Re: [Gambas-user] GAMBAS Test Suite question

2012-01-02 Thread Jussi Lahtinen
I attached my crappy version of it. I run it automatically with my compile script. It's free for all use. Jussi On Mon, Jan 2, 2012 at 14:10, nando wrote: > I'd like to know if there is a comprehensive test suite out there to > test all (or as much as possible of) of GAMBAS ? > > It would be

Re: [Gambas-user] GAMBAS Test Suite question

2012-01-02 Thread Randall Morgan
There are several stand-alone tools at: http://ltp.sourceforge.net/tooltable.php You can find some tools from Oracle here: http://www.oracle.com/technetwork/oem/downloads/index-084446.html And lots of Linux specific info here: http://www.opengroup.org/testing/linux-test/ Hope this helps, Randall

Re: [Gambas-user] Cannot close GUI application

2012-01-02 Thread Ron
You always get unfreed stuff when using Quit in a GUI project is my experience. In Form_Close() ' exit program Main.CloseAll() FMain.Close END In CloseAll() I close all file handles, sockets, serial ports and stop timers. Then FMain.Close does the trick nicely. Regards, Ron_2nd. 2012/1/2

Re: [Gambas-user] Running programs from terminal and by double clicking.

2012-01-02 Thread Jussi Lahtinen
> Exec ["gbr3" ... ] will search for gbr3 in the PATH environment > variable. Maybe you don't have the same PATH when you run a command from > a terminal, and when you run it by "double-clicking" on an icon? Note > that if PATH is not defined, the program is searched in /usr and /usr/bin. > In my

Re: [Gambas-user] Code snippets category in the wiki

2012-01-02 Thread Fabien Bodard
2012/1/2 Sebi : > I tried to create a page at using my > credentials, but it seems I can only edit pages. Could you check this please? have you try to click on create ? > -Original Message- > From: Benoît Minisini > Date: Mon, 02 Jan 2012 19:58:11 > To: mailing list for gambas users >

Re: [Gambas-user] Cannot close GUI application

2012-01-02 Thread Fabien Bodard
Le 2 janvier 2012 19:57, Benoît Minisini a écrit : > Le 02/01/2012 17:03, M. Cs. a écrit : >> The command Quit() won't work in my application, so I cannot terminate >> the process. The GUI disappears, but the process remains. Is there any >> safe way to close a GUI application? >> >> Csaba >> > >

Re: [Gambas-user] Code snippets category in the wiki

2012-01-02 Thread Sebi
I tried to create a page at using my credentials, but it seems I can only edit pages. Could you check this please? -Original Message- From: Benoît Minisini Date: Mon, 02 Jan 2012 19:58:11 To: mailing list for gambas users Reply-To: mailing list for gambas users Subject: Re: [Gambas-use

Re: [Gambas-user] Running programs from terminal and by double clicking.

2012-01-02 Thread Benoît Minisini
Le 02/01/2012 19:24, Jussi Lahtinen a écrit : > Hi! > Strange problem. For some reason I'm not able to start child processes if > the parent program is launched by double clicking. > This is very specific issue. Firstly child program must be made with > gambas, and it must be evoked with certain co

Re: [Gambas-user] Code snippets category in the wiki

2012-01-02 Thread Benoît Minisini
Le 02/01/2012 07:20, Sebastian Kulesz a écrit : > Hi!! > > I would like to know what do you think about a Code Snippets category > being added to the wiki. It would be a place to share common pieces of > code that tend to be used (and coded from scratch) a lot. > Yes, great idea. As soon as I don'

Re: [Gambas-user] Cannot close GUI application

2012-01-02 Thread Benoît Minisini
Le 02/01/2012 17:03, M. Cs. a écrit : > The command Quit() won't work in my application, so I cannot terminate > the process. The GUI disappears, but the process remains. Is there any > safe way to close a GUI application? > > Csaba > Please elaborate. Send me a project so that I can reproduce the

[Gambas-user] Running programs from terminal and by double clicking.

2012-01-02 Thread Jussi Lahtinen
Hi! Strange problem. For some reason I'm not able to start child processes if the parent program is launched by double clicking. This is very specific issue. Firstly child program must be made with gambas, and it must be evoked with certain command. Here is code (also ready project is attached) to

Re: [Gambas-user] Cannot close GUI application

2012-01-02 Thread Olivier Cruilles
I think in this case that there is an object non closed and for this reason gambas does not want to close your application. Olivier Cruilles Mail: linu...@club-internet.fr Le 2 janv. 2012 à 18:38, Ron a écrit : > Just close all open handles file hand timers hand close main form with > me.clos

Re: [Gambas-user] Cannot close GUI application

2012-01-02 Thread Ron
Just close all open handles file hand timers hand close main form with me.close Ron Op 2 jan. 2012 18:36 schreef "Olivier Cruilles" het volgende: > Hello, > > Did you use the quit() command in the main Form ? > > > > > > Olivier Cruilles > Mail: linu...@club-internet.fr > > Le 2 janv. 2012 à 17:0

Re: [Gambas-user] Cannot close GUI application

2012-01-02 Thread Olivier Cruilles
Hello, Did you use the quit() command in the main Form ? Olivier Cruilles Mail: linu...@club-internet.fr Le 2 janv. 2012 à 17:03, M. Cs. a écrit : > The command Quit() won't work in my application, so I cannot terminate > the process. The GUI disappears, but the process remains. Is there an

[Gambas-user] Cannot close GUI application

2012-01-02 Thread M. Cs.
The command Quit() won't work in my application, so I cannot terminate the process. The GUI disappears, but the process remains. Is there any safe way to close a GUI application? Csaba -- Ridiculously easy VDI. With Citri

Re: [Gambas-user] Code snippets category in the wiki

2012-01-02 Thread Jussi Lahtinen
Idea is great, but it will need volunteers... Jussi On Mon, Jan 2, 2012 at 08:20, Sebastian Kulesz wrote: > Hi!! > > I would like to know what do you think about a Code Snippets category > being added to the wiki. It would be a place to share common pieces of > code that tend to be used (and

[Gambas-user] GAMBAS Test Suite question

2012-01-02 Thread nando
I'd like to know if there is a comprehensive test suite out there to test all (or as much as possible of) of GAMBAS ? It would be easier over time and new releases to run the 'big' test to prove anything that might become broken. Opinions? -Fernando --

[Gambas-user] Issue 183 in gambas: Install Gambas 3 on Mandriva 2011.2

2012-01-02 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 183 by lemandri...@gmail.com: Install Gambas 3 on Mandriva 2011.2 http://code.google.com/p/gambas/issues/detail?id=183 1) Missing paquets when installing ? 2) GIVE THE FOL