Re: [Gambas-user] R: Unending cycle For...Next with variable As Byte

2012-10-01 Thread Jussi Lahtinen
FOR byte = 0 TO 254 PRINT index NEXT index PRINT index END FOR index This same thing is simpler in Gambas: For ii = 0 to 254 Print ii Next Print ii Jussi -- Got visibility? Most devs has no idea what

Re: [Gambas-user] Issue 332 in gambas: Not able to use Desktop.ActiveWindow to change the active window

2012-10-01 Thread gambas
Updates: Status: Fixed Labels: -Version-TRUNK Version-3.3.0 Comment #2 on issue 332 by benoit.m...@gmail.com: Not able to use Desktop.ActiveWindow to change the active window http://code.google.com/p/gambas/issues/detail?id=332 I found my mistake. Fixed in revision #5220.

Re: [Gambas-user] Issue 333 in gambas: In the report the spacing changed in the latest version

2012-10-01 Thread gambas
Comment #6 on issue 333 by flynetin...@gmail.com: In the report the spacing changed in the latest version http://code.google.com/p/gambas/issues/detail?id=333 the problem still continues in the latest version -- Got

Re: [Gambas-user] Release 3.3.1, gtk ColourChooser is somewhat broken

2012-10-01 Thread Benoît Minisini
Le 01/10/2012 04:31, RICHARD WALKER a écrit : Just installed a rebuilt 3.3.2 rpm and my test project passed with flying colours (or colors?) It was just a typo in the original message now corrected. The flying colours reference is an idiomatic expression of possibly military origin which

Re: [Gambas-user] Crash with translation tool

2012-10-01 Thread Benoît Minisini
Le 01/10/2012 16:03, Jussi Lahtinen a écrit : It's project I can't send. How could I help you then if I cannot reproduce the bug? -- Benoît Minisini -- Got visibility? Most devs has no idea what their production app

Re: [Gambas-user] Crash with translation tool

2012-10-01 Thread Jussi Lahtinen
How could I help you then if I cannot reproduce the bug? Sometimes you have that magic touch, never know without trying. Jussi -- Got visibility? Most devs has no idea what their production app looks like. Find out how

Re: [Gambas-user] Crash with translation tool

2012-10-01 Thread Jussi Lahtinen
I hope this leads to somewhere... I removed 2 /dev/null (--- why it was there?) to see what happens when .pot file is created, or more precisely why it has zero size. /home/jussiemmi/Desktop/testcopy/.lang/MainModule.pot:2858: duplicate message definition...

Re: [Gambas-user] R: Unending cycle For...Next with variable As Byte

2012-10-01 Thread RICHARD WALKER
Problem with that is that the second Print ii statement is executed, even if the loop is skipped (because of initial conditions). The SuperBASIC version would print nothing if the initial loop conditions indicate it should be skipped The Gambas equivalent would be more like For ii = 0 to 254

Re: [Gambas-user] R: Unending cycle For...Next with variable As Byte

2012-10-01 Thread Ru Vuott
...may we adfirm: A cycle, to end, must reach the upper limit to its maximum extreme. ? --- Dom 30/9/12, Emil Lenngren emil.lenng...@gmail.com ha scritto: Da: Emil Lenngren emil.lenng...@gmail.com Oggetto: Re: [Gambas-user] R: Unending cycle For...Next with variable As Byte A:

Re: [Gambas-user] R: Unending cycle For...Next with variable As Byte

2012-10-01 Thread Ru Vuott
...may we adfirm: A cycle, to end, must reach the upper limit to its maximum extreme.   ? ...I'ld like to adjust :-) A cycle, to end, must reach the upper value to its maximum extreme. Regards vuott -- Don't

[Gambas-user] gb.media compilation error

2012-10-01 Thread Pino Zollo
-- root@SIP-ubuntu:/usr/src/gambas3-3.3.2# ./configure -C conf_ubuntu.txt configure: WARNING: Unable to find file: libintl.so configure: WARNING: This library may be located inside the system C library configure: WARNING: Unable to find file: libiconv.so

Re: [Gambas-user] Release 3.3.1, gtk ColourChooser is somewhat broken

2012-10-01 Thread RICHARD WALKER
You must ensure that: - It is correctly indented. OK there I think. Everything is appropriately indented. The size of the indent is tweakable in the editor preferences. I set it to 4 spaces as I am used to that. - Variable, functions... have good names. All of the functions (apart from

Re: [Gambas-user] Release 3.3.1, gtk ColourChooser is somewhat broken

2012-10-01 Thread Fabien Bodard
http://www.gambasdoc.org/help/doc/naming?v3 Then this is a,right way to learn. Benoit can explain you a lot. Don't be so scary Le 2 oct. 2012 02:51, RICHARD WALKER richard.j.wal...@ntlworld.com a écrit : You must ensure that: - It is correctly indented. OK there I think. Everything is