Re: [Gambas-user] settings INPUT <> settings OUTPUT

2009-08-03 Thread Benoît Minisini
> Salut Benoit, > > this line was written by settings > > Descript="'that was only yesterday' a wonderful,\\nnever before seen way > to design a\\nprinting template\\nhaving \\nfun with it\\nnew" > > and this is read by settings > > 'that was only yesterday' a wonderful,\ > never before seen way to

Re: [Gambas-user] Errors compiling Gambas

2009-08-03 Thread Benoît Minisini
> Benoît Minisini ha scritto: > >> This is the output of the make command on Gambas2 SVN. > > > > I think you have a problem on your system, as gcc tells it does not > > recognize an option... > > > > Please post the full output of the compilation process, i.e. with > > configure. > > > > And try t

Re: [Gambas-user] Whats a MOC - build failed 2209

2009-08-03 Thread Benoît Minisini
> Message something like moc has changed too much qt 4.4.3 > death of > compilation ?whats a moc? do I have to upgrade qt or something?? > > Last successful build 2204. > > richard > No, you have to do a "make clean" to remove old c++ file generated by the "moc" program. Regards, -- Benoît -

[Gambas-user] Whats a MOC - build failed 2209

2009-08-03 Thread richard terry
Message something like moc has changed too much qt 4.4.3 > death of compilation ?whats a moc? do I have to upgrade qt or something?? Last successful build 2204. richard -- Let Crystal Reports handle the reporting - Free

Re: [Gambas-user] Errors compiling Gambas

2009-08-03 Thread Leonardo Miliani
Benoît Minisini ha scritto: This is the output of the make command on Gambas2 SVN. I think you have a problem on your system, as gcc tells it does not recognize an option... Please post the full output of the compilation process, i.e. with configure. And try to do a checkout from scratch, a

Re: [Gambas-user] Errors compiling Gambas

2009-08-03 Thread Benoît Minisini
> This is the output of the make command on Gambas2 SVN. I think you have a problem on your system, as gcc tells it does not recognize an option... Please post the full output of the compilation process, i.e. with configure. And try to do a checkout from scratch, and a ./reconf before doing ".

Re: [Gambas-user] Errors compiling Gambas

2009-08-03 Thread Leonardo Miliani
This is the output of the make command on Gambas2 SVN. -- Web: www.leonardomiliani.com E-mail: leona...@leonardomiliani.com Scegli software opensource - Choose opensource software Co-fondatore di Gambas-it.org Il sito di riferimento della comunità italiana degli utenti di Gambas www.gambas-it.or

Re: [Gambas-user] CGI program in Gambas

2009-08-03 Thread Benoît Minisini
> Benoit, > > > I never write asp cgi but only cgi unix script. I understand completly > the concept of this one. > I try the little example that I found on the Gambas web site: > > #!/usr/bin/env gbw2 > <% > DIM sEnv AS String > %> > > > > > > CGI script environmental variables > > > > >

Re: [Gambas-user] CGI program in Gambas

2009-08-03 Thread Olivier Cruilles
Benoit, I never write asp cgi but only cgi unix script. I understand completly the concept of this one. I try the little example that I found on the Gambas web site: #!/usr/bin/env gbw2 <% DIM sEnv AS String %> CGI script environmental variables Name Value <% FOR EAC

Re: [Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
Ok... I guess I'll have to find a way around it. I'm not ready to switch to gambas3 yet. -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and

Re: [Gambas-user] Reading settings

2009-08-03 Thread Jean-Yves F. Barbier
M0E Lnx a écrit : > Yeah.. that's what I mean. > But I'd like to take a peek at the settings and see what all is in > there from gambas > > Let's say my settings file has something like > [FMAIN] > Width=300 > Height=200 > X=0 > > [Form1] > Width=400 > Height=200 > X=10 > > How can I check for s

Re: [Gambas-user] Reading settings

2009-08-03 Thread Benoît Minisini
> How about in gambas2? > the Settings class doesn't have a keys property > Yes, you can't do that in Gambas 2. You must find a way where you don't have to know the settings file contents. -- Benoît -- Let Crystal Repo

Re: [Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
How about in gambas2? the Settings class doesn't have a keys property -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and foc

Re: [Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
Yeah.. that's what I mean. But I'd like to take a peek at the settings and see what all is in there from gambas Let's say my settings file has something like [FMAIN] Width=300 Height=200 X=0 [Form1] Width=400 Height=200 X=10 How can I check for something lie "[FMAIN]" or "[Form1]" ? and see if i

Re: [Gambas-user] Reading settings

2009-08-03 Thread Benoît Minisini
> Guys, I've been working with gb.settings on a couple of my apps in the > past, but I have a question. > > Is there any way to sort of browse through the stored settings? I > guess to see what settings are defined in the settings file? > You can do the following in Gambas 3: ' Get all root key

Re: [Gambas-user] Reading settings

2009-08-03 Thread Jean-Yves F. Barbier
M0E Lnx a écrit : > I should have said something native to gambas > without having to cat the thing using a shell process. > > I mean, I'll do it if it's the only way, but I'd rather do it in > gambas if at all possible. you can use it like a configuration file and read/write it I guess -- Anyo

Re: [Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
I should have said something native to gambas without having to cat the thing using a shell process. I mean, I'll do it if it's the only way, but I'd rather do it in gambas if at all possible. -- Let Crystal Reports handl

Re: [Gambas-user] making an animated demo

2009-08-03 Thread Ricardo Díaz Martín
Hi JY, I'm using FreeNX in Ubuntu64 to deploy my gambas2 apps in windows enviroments. I've no problems yet to connect form both (lan and from wan - using ADSL connections with 20 simultaneus users). The ubuntu server I usually recommend to my customer are Intel Quad Core with 4 Gb RAM at least.

Re: [Gambas-user] Reading settings

2009-08-03 Thread Jean-Yves F. Barbier
M0E Lnx a écrit : > Guys, I've been working with gb.settings on a couple of my apps in the > past, but I have a question. > > Is there any way to sort of browse through the stored settings? I > guess to see what settings are defined in the settings file? cat mywonderfulprojectilovesomuch/.project

Re: [Gambas-user] CGI program in Gambas

2009-08-03 Thread Benoît Minisini
> Benoit, > > I prefer use the gb.web component but I don't know how to start. > > So an example in this way will be great. > > Thank you. > Have you already written ASP or PHP pages? If you did, things will be easier to explain... -- Benoît

Re: [Gambas-user] bug in Gambas2 IDE

2009-08-03 Thread Benoît Minisini
> Salut, > > the breakpoint window/list is not cleared if you load another > project. > > See IDE-Gambas2.png > As you can see, only the 2 and 3 entries are from that project. Hi, I fixed it in revision #2208. Regards, -- Benoît

Re: [Gambas-user] Errors compiling Gambas

2009-08-03 Thread Benoît Minisini
> Hello. > I'm having some problems compiling Gambas 2.15.2 and Gambas2-SVN. > In the first case, it seems that everything goes right but when I try to > launch Gambas it doesn't find it on my system. > If I launch it using the absolute path, I get an ERROR #45: File or > Directory doesn't exist (o

[Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
Guys, I've been working with gb.settings on a couple of my apps in the past, but I have a question. Is there any way to sort of browse through the stored settings? I guess to see what settings are defined in the settings file? --

[Gambas-user] Errors compiling Gambas

2009-08-03 Thread Leonardo Miliani
Hello. I'm having some problems compiling Gambas 2.15.2 and Gambas2-SVN. In the first case, it seems that everything goes right but when I try to launch Gambas it doesn't find it on my system. If I launch it using the absolute path, I get an ERROR #45: File or Directory doesn't exist (or somethin

Re: [Gambas-user] Column auto reseize in tables views.

2009-08-03 Thread David Villalobos Cambronero
Thanks Benoit, very helpful Regards -- David - Original Message From: Benoît Minisini To: mailing list for gambas users Sent: Sunday, August 2, 2009 3:54:12 AM Subject: Re: [Gambas-user] Column auto reseize in tables views. > Il sabato 1 agosto 2009 19:36:51 David Villalobos Cam

Re: [Gambas-user] Column auto reseize in tables views.

2009-08-03 Thread David Villalobos Cambronero
ThanksStefano, very helpful Regards -- David - Original Message From: Stefano Palmeri To: mailing list for gambas users Sent: Sunday, August 2, 2009 3:22:09 AM Subject: Re: [Gambas-user] Column auto reseize in tables views. Il sabato 1 agosto 2009 19:36:51 David Villalobos Cambr

[Gambas-user] settings INPUT <> settings OUTPUT

2009-08-03 Thread Charlie Reinl
Salut Benoit, this line was written by settings Descript="'that was only yesterday' a wonderful,\\nnever before seen way to design a\\nprinting template\\nhaving \\nfun with it\\nnew" and this is read by settings 'that was only yesterday' a wonderful,\ never before seen way to design a\ printin