Re: [Gambas-user] Key code constant wrong?

2013-11-09 Thread Alain Baudrez
2013/11/9 MinnesotaJon > .. > Wamukota wrote > > The value for the key.enter constant in the 3.5.0 on my box is given as > > 16777221 > > > > ? key.enter > > 16777221 > > > > But, the value returned by key.code in the program is 16777220 in the > > keyrelease or the keypress events which impl

Re: [Gambas-user] class vs module : usage property, behabior usage

2013-11-09 Thread Fabien Bodard
A module is a static class. It's like using the static keyword on each procedure of a class... And a procedure is not instanciable so all other classe call the same instance in fact. 2013/11/9 PICCORO McKAY Lenz : > in development another manpower make factory connections > to postgres database a

Re: [Gambas-user] Specifications for Gambas 3 packaging : updated!

2013-11-09 Thread Benoît Minisini
Le 06/11/2013 18:21, PICCORO McKAY Lenz a écrit : > I read now carefully the gambas specification and do not comply with > some little debian specifications > > "gambas3-devel" said that must handle only the compilers.. and for > debian the .so and .a files must be in "devel" packages, with header

[Gambas-user] class vs module : usage property, behabior usage

2013-11-09 Thread PICCORO McKAY Lenz
in development another manpower make factory connections to postgres database as module, and i use class instanciation for connections to database.. what its the behabior difference and implicit consecuences.. ? i mean, my partner call directly as static methods/functions the create¡ion of conecti

Re: [Gambas-user] Key code constant wrong?

2013-11-09 Thread MinnesotaJon
.. Wamukota wrote > The value for the key.enter constant in the 3.5.0 on my box is given as > 16777221 > > ? key.enter > 16777221 > > But, the value returned by key.code in the program is 16777220 in the > keyrelease or the keypress events which implies that I cannot check if the > key presse

Re: [Gambas-user] Pre-release of Gambas 3.5.1

2013-11-09 Thread Kende Krisztián
2013-11-09 18:52 keltezéssel, Benoît Minisini írta: > Le 09/11/2013 12:02, Kende Krisztián a écrit : >> 2013-11-09 02:19 keltezéssel, Benoît Minisini írta: >>> Hi, >>> >>> Here you can download a non-official pre-release of Gambas 3.5.1: >>> >>> http://sourceforge.net/projects/gambas/files/gambas3/

Re: [Gambas-user] Pre-release of Gambas 3.5.1

2013-11-09 Thread Benoît Minisini
Le 09/11/2013 12:02, Kende Krisztián a écrit : > 2013-11-09 02:19 keltezéssel, Benoît Minisini írta: >> Hi, >> >> Here you can download a non-official pre-release of Gambas 3.5.1: >> >> http://sourceforge.net/projects/gambas/files/gambas3/gambas3-3.5.1.tar.bz2/download >> >> This releases mainly tr

Re: [Gambas-user] Specifications for Gambas 3 packaging : updated!

2013-11-09 Thread Kende Krisztián
2013-11-05 22:00 keltezéssel, Kende Krisztián írta: > 2013-11-05 21:28 keltezéssel, Sebastian Kulesz írta: >> First builds are starting to appear :) >> I will wait for the armhf builds to finish to send a notice. >> >> If you want to touch the recipes in any way, please feel *free* to do >> so. I

Re: [Gambas-user] gb.media missing from Kendek PPA

2013-11-09 Thread Kende Krisztián
2013-11-09 13:10 keltezéssel, Alain Baudrez írta: > I just did an install of the 3.5 (3.5.0-6precise1) and gb.media seems to be > missing. > > *Alain J. Baudrez* Missing (disabled) on Lucid and Precise, because this components are not compatible with them. Kendek --

[Gambas-user] gb.media missing from Kendek PPA

2013-11-09 Thread Alain Baudrez
I just did an install of the 3.5 (3.5.0-6precise1) and gb.media seems to be missing. *Alain J. Baudrez* -- November Webinars for C, C++, Fortran Developers Accelerate application performance with scalable programming model

Re: [Gambas-user] Pre-release of Gambas 3.5.1

2013-11-09 Thread Kende Krisztián
2013-11-09 02:19 keltezéssel, Benoît Minisini írta: > Hi, > > Here you can download a non-official pre-release of Gambas 3.5.1: > > http://sourceforge.net/projects/gambas/files/gambas3/gambas3-3.5.1.tar.bz2/download > > This releases mainly tries to fix the packager, but there are some bug > fixes

[Gambas-user] Key code constant wrong?

2013-11-09 Thread Alain Baudrez
The value for the key.enter constant in the 3.5.0 on my box is given as 16777221 ? key.enter 16777221 But, the value returned by key.code in the program is 16777220 in the keyrelease or the keypress events which implies that I cannot check if the key pressed is the Enter/Return key using the cons