Re: [Gambas-user] CGI app help.

2011-05-11 Thread Rolf-Werner Eilert
Am 12.05.2011 00:53, schrieb Hamilton Geminiano Andrioli Junior: > Hello world! > > I want to make a system for my School. > Now i have to decide how and where to write it. > > Does anyone have a example of CGI Web based program in gambas? > > Thanks... > Hello Hamilton, I have made CGI applicat

Re: [Gambas-user] CGI app help.

2011-05-11 Thread Rolf-Werner Eilert
Am 12.05.2011 01:02, schrieb François Gallo: > Le 12/05/2011 00:53, Hamilton Geminiano Andrioli Junior a écrit : >> Hello world! >> >> I want to make a system for my School. >> Now i have to decide how and where to write it. >> >> Does anyone have a example of CGI Web based program in gambas? >> >>

Re: [Gambas-user] Issue 65 in gambas: Trying to add an additional file when building an AutoTools package chashes the IDE

2011-05-11 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 65 by benoit.m...@gmail.com: Trying to add an additional file when building an AutoTools package chashes the IDE http://code.google.com/p/gambas/issues/detail?id=65 (No comment was entered for this chan

Re: [Gambas-user] Issue 64 in gambas: Trying to add a dependency when building an AutoPackage Installer chashes the IDE

2011-05-11 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 64 by benoit.m...@gmail.com: Trying to add a dependency when building an AutoPackage Installer chashes the IDE http://code.google.com/p/gambas/issues/detail?id=64 (No comment was entered for this change

Re: [Gambas-user] CGI app help.

2011-05-11 Thread François Gallo
Le 12/05/2011 00:53, Hamilton Geminiano Andrioli Junior a écrit : > Hello world! > > I want to make a system for my School. > Now i have to decide how and where to write it. > > Does anyone have a example of CGI Web based program in gambas? > > Thanks... You must know how to work a CGI script, and

[Gambas-user] CGI app help.

2011-05-11 Thread Hamilton Geminiano Andrioli Junior
Hello world! I want to make a system for my School. Now i have to decide how and where to write it. Does anyone have a example of CGI Web based program in gambas? Thanks... -- Achieve unprecedented app performance and

Re: [Gambas-user] This Gambas 2 example does not work properly:

2011-05-11 Thread Benoît Minisini
> Make a label on a form: Label1 > > In code, run the following 3 lines: > > Label1.text = "B" > Label1.text = Left$(Label1.text, Len(Label1.Text) - 1) > Label1.text = Left$(Label1.text, 0) > > > Line 2 or line 3 should reduce it to an empty string. > It doesn't > > -Fernando > The bug

Re: [Gambas-user] This Gambas 2 example does not work properly:

2011-05-11 Thread Jussi Lahtinen
But I CAN reproduce this when using GTK+! Jussi On Wed, May 11, 2011 at 20:08, Jussi Lahtinen wrote: > I cannot reproduce with Gambas 2.23.0 @ Ubuntu 10.10 64bit. > > Jussi > > > > > On Wed, May 11, 2011 at 06:14, nando wrote: > >> The problem is setting a zero length string to the label >> F

Re: [Gambas-user] This Gambas 2 example does not work properly:

2011-05-11 Thread Jussi Lahtinen
I cannot reproduce with Gambas 2.23.0 @ Ubuntu 10.10 64bit. Jussi On Wed, May 11, 2011 at 06:14, nando wrote: > The problem is setting a zero length string to the label > For example > > >'make a label label1 on the form with text ="B" >'then run the following... > >DIM s AS STRIN

Re: [Gambas-user] This Gambas 2 example does not work properly:

2011-05-11 Thread nando
Gambas 2.22 QT CentOS 5.4 Label1.text = "" & s 'After much testing, the above does 'set the label to an empty string if s="" 'when used in the last line of the example below. -- Original Message --- From: Benoît Minisini To: nand...@nothingsimple.com, mailing list for gam

Re: [Gambas-user] This Gambas 2 example does not work properly:

2011-05-11 Thread Benoît Minisini
> The problem is setting a zero length string to the label > For example > > > 'make a label label1 on the form with text ="B" > 'then run the following... > > DIM s AS STRING > s = "D" > s = Left(s, 0) > PRINT Len(s) - 1, "*"; s; "*" ' s is correct: empty string > L