Re: [Gambas-user] Showing the Form's Gui

2010-04-15 Thread Jorge Carrión
Gracias Ricardo. Es lo que estaba buscando para un par de formularios rebeldes. Con algún retoque me vale. Un saludo. 2010/4/15 Fabien Bodard gambas...@gmail.com i don't know if richard want the user to be able to do anything on the showed form before the tatal loading ... the better way

Re: [Gambas-user] static const?

2010-04-15 Thread Doriano Blengino
Fabián Flores Vadell ha scritto: 2010/4/14 Doriano Blengino doriano.bleng...@fastwebnet.it: First example. I store some bookmarks... ... I could break out the loop using a logic variable, but this way I save a variable. Or I could test the variable in the loop construct, like this:

Re: [Gambas-user] Showing the Form's Gui

2010-04-15 Thread richard terry
On Thursday 15 April 2010 08:07:56 Fabien Bodard wrote: The method suggested using the timer works for my use really well, and really simply. Users are much more tolerant if the gui is showing and processing going on in the background even if the busy cursor is showing briefly. This

Re: [Gambas-user] static const?

2010-04-15 Thread Jussi Lahtinen
Back to gambas - I don't know if the documentation says anything about short-circuit and things like that. May be we can assume it as a standard, that modern languages always do short-circuit, but the concept remains. Gambas doesn't have short-circuits, you have to write like this: IF a=1

Re: [Gambas-user] static const?

2010-04-15 Thread Doriano Blengino
Jussi Lahtinen ha scritto: Back to gambas - I don't know if the documentation says anything about short-circuit and things like that. May be we can assume it as a standard, that modern languages always do short-circuit, but the concept remains. Gambas doesn't have short-circuits, you

Re: [Gambas-user] static const?

2010-04-15 Thread Charlie Reinl
Am Donnerstag, den 15.04.2010, 19:28 +0200 schrieb Doriano Blengino: Jussi Lahtinen ha scritto: Back to gambas - I don't know if the documentation says anything about short-circuit and things like that. May be we can assume it as a standard, that modern languages always do short-circuit,

Re: [Gambas-user] static const?

2010-04-15 Thread Jussi Lahtinen
Yes, you can test it. This should generate error: If 1 = 2 And 1 / 0 Then Print test This should not.: If 1 = 2 And If 1 / 0 Then Print test Jussi On Thu, Apr 15, 2010 at 20:56, Charlie Reinl karl.re...@fen-net.de wrote: Am Donnerstag, den 15.04.2010, 19:28 +0200 schrieb Doriano Blengino:

Re: [Gambas-user] static const?

2010-04-15 Thread Les Hardy
Charlie Reinl wrote: Am Donnerstag, den 15.04.2010, 19:28 +0200 schrieb Doriano Blengino: Jussi Lahtinen ha scritto: Back to gambas - I don't know if the documentation says anything about short-circuit and things like that. May be we can assume it as a standard, that modern

Re: [Gambas-user] static const?

2010-04-15 Thread Fabián Flores Vadell
I don't agree the criteria for saving one variable or one expresion if it is not justified. Well, perhaps my daily work with little CPUs (some have 32 bytes of ram!) drives me to professional bias, but why use a variable if can be avoided? There is more than one reason for this (reported

Re: [Gambas-user] static const?

2010-04-15 Thread Charlie Reinl
Am Donnerstag, den 15.04.2010, 21:07 +0300 schrieb Jussi Lahtinen: Yes, you can test it. This should generate error: If 1 = 2 And 1 / 0 Then Print test This should not.: If 1 = 2 And If 1 / 0 Then Print test Jussi On Thu, Apr 15, 2010 at 20:56, Charlie Reinl karl.re...@fen-net.de