[Gambas-user] Wiki Observation, SQL syntax

2015-01-01 Thread Lewis Balentine
For some reason I do not seem to be able to log into the Gambas Wiki. That is probably a good thing considering my level of ignorance (which has proven to be immense). Thus I pass these observations along for consideration: I have dealt with various SQL Data Bases for some two decades (primaril

Re: [Gambas-user] File watching behaviour

2015-01-01 Thread Ron
New year, new keywords ;-) I was just about to install latest revision to test the trunk -soon to be 3.7 version-, so I will let you know. Regards, Ron. 2015-01-02 3:28 GMT+01:00 Benoît Minisini : > @Jussi : I introduce a new thread for the problem. Now for the new year > people will always cre

[Gambas-user] Not good

2015-01-01 Thread adamn...@gmail.com
http://www.weatherzone.com.au/news/dangerous-fire-weather-flaring-through-sa-and-vic/215583 Not good at all. Hope to see you all mater -- B Bruen -- Dive into the World of Parallel Programming! The Go Parallel Website,

Re: [Gambas-user] DataSource Before Save (Beno?t Minisini)

2015-01-01 Thread Christian e Ana Luiza Britto
Hi Benoît Minisini, Thank you so much! I'll wait for Gambas 3.7 Best Regards -- Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is

Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods...

2015-01-01 Thread Benoît Minisini
Le 02/01/2015 02:14, Ru Vuott a écrit : > ...in short, SDL2 "Channel" Class seems to be useless at present. > > Regards > vuott > Channel has only dynamic methods and properties. Do you know how to use it? -- Benoît Minisini --

Re: [Gambas-user] SerialPort: RS232 DTR problem

2015-01-01 Thread Benoît Minisini
Le 16/12/2014 15:52, Tobias Boege a écrit : > Hi, > > [ this is a forwarded bug report -- and this time I'm only translating. I >don't understand any of these hardware things. If there are questions >left, don't hesitate; ] > > a user complains that SerialPort.DTR is buggy on his system: af

Re: [Gambas-user] Happy new year...

2015-01-01 Thread adamn...@gmail.com
On Fri, 02 Jan 2015 01:01:33 +0100 Benoît Minisini wrote: > Le 01/01/2015 23:11, adamn...@gmail.com a écrit : > > On Thu, 1 Jan 2015 22:52:43 +0100 > > Tobias Boege wrote: > > > >> On Fri, 02 Jan 2015, adamn...@gmail.com wrote: > >>> On Thu, 01 Jan 2015 10:12:06 +0100 > >>> Beno?t Minisini wrot

[Gambas-user] File watching behaviour

2015-01-01 Thread Benoît Minisini
@Jussi : I introduce a new thread for the problem. Now for the new year people will always create a new thread for a new topic. :-) In revision #6791 I made the following changes: - If a watched file descriptor is ready to read, but has no data, then the watch is not automatically stopped anymo

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Benoît Minisini
Le 02/01/2015 02:53, Jussi Lahtinen a écrit : >> There are actually two problems in your test: >> >> 1) What is watched is not a file path, but a file descriptor. The >> command "echo test > XXX" replace the "XXX" file by a new file with the >> same name, and that file is not opened nor watched by

Re: [Gambas-user] DataSource Before Save

2015-01-01 Thread Benoît Minisini
Le 02/01/2015 02:44, Christian e Ana Luiza Britto a écrit : > Hi Folks, > Happy New Year for everyone! > I would like to know if it's possible to use DataSource BeforeSave > event to check data before it gets saved and cancel that if necessary > (using Stop Event or something like that). It's possi

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Jussi Lahtinen
> There are actually two problems in your test: > > 1) What is watched is not a file path, but a file descriptor. The > command "echo test > XXX" replace the "XXX" file by a new file with the > same name, and that file is not opened nor watched by the test. > Oh, I see... however the problem persi

[Gambas-user] DataSource Before Save

2015-01-01 Thread Christian e Ana Luiza Britto
Hi Folks, Happy New Year for everyone! I would like to know if it's possible to use DataSource BeforeSave event to check data before it gets saved and cancel that if necessary (using Stop Event or something like that). It's possible to check data validation through database triggers, but I would li

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Benoît Minisini
Le 02/01/2015 02:16, Jussi Lahtinen a écrit : >> By the way, it's a pity that you didn't separate all your tests so that >> we could only run one of them. >> > > I will think about that. The test run pretty quickly on my system, but > maybe the inconvenience is in debugging... > Meanwhile here is t

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Jussi Lahtinen
> By the way, it's a pity that you didn't separate all your tests so that > we could only run one of them. > I will think about that. The test run pretty quickly on my system, but maybe the inconvenience is in debugging... Meanwhile here is the problem isolated. Jussi isolation-0.0.1.tar.gz De

[Gambas-user] R: SDL2 : "Channel" Class has not property nor metods...

2015-01-01 Thread Ru Vuott
...in short, SDL2 "Channel" Class seems to be useless at present. Regards vuott Gio 1/1/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] SDL2 : "Channel" Class has not property nor metods... A: gambas-user@lists.sourceforge.net Data: Giovedì 1 gen

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Benoît Minisini
Le 02/01/2015 01:49, Jussi Lahtinen a écrit : >> Shell "echo test > " & sTemp Wait >> >> does not emit any event, as its underlying Process object has no event >> name. >> > > I still don't get it. I re-read the documentation and it says: > > If the WATCH keyword is specified, the file is

Re: [Gambas-user] IF Not (any boolean) then

2015-01-01 Thread Jussi Lahtinen
I think this is handled like function named Not: If Not(True) Then And this is what you are trying to do: If Not (True) Then Or just: If Not True Then Jussi On Fri, Jan 2, 2015 at 2:38 AM, Lewis Balentine wrote: > My Apologies, I was trying to keep the message short and to the point: > > '

Re: [Gambas-user] IF Not (any boolean) then

2015-01-01 Thread Lewis Balentine
>> The error is not the NOT it's the missing () << Actually the error turns out to be "EXTRA" (Parenthesis). The following two lines do not produce the error: If Not True Then Print "False" Else Print "True" If Not TestFunk() Then Print "False" Else Print "True" It was my mistaken impresio

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Jussi Lahtinen
> Shell "echo test > " & sTemp Wait > > does not emit any event, as its underlying Process object has no event > name. > I still don't get it. I re-read the documentation and it says: If the WATCH keyword is specified, the file is watched by the interpreter via the select(2) system call :

Re: [Gambas-user] IF Not (any boolean) then

2015-01-01 Thread Lewis Balentine
My Apologies, I was trying to keep the message short and to the point: ' Gambas module file ' Project IfNot Public Sub Main() ' The following line Prints "False" If TestFunk() Then Print "True" Else Print "False" ' The following line prints "False" If TestFunk() = False Then Print "Fa

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Tobias Boege
On Thu, 01 Jan 2015, Beno??t Minisini wrote: > ...to all Gambas users and developers! > > I'd like to release Gambas 3.7 as soon as possible, because I won't be > able to create a Gambas 3.6.3 release. Too much work to backport some > important fixes. > > Please tell me if you have something bl

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Benoît Minisini
Le 01/01/2015 15:15, Jussi Lahtinen a écrit : > I reported about failure of "Read Watch" test (ERROR 259). > I expect watch to call read event because of line: > Shell "echo test > " & sTemp Wait > > But it doesn't. > Is my method flawed or what is going on? > See attachment. > > > Jussi >

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Benoît Minisini
Le 01/01/2015 23:11, adamn...@gmail.com a écrit : > On Thu, 1 Jan 2015 22:52:43 +0100 > Tobias Boege wrote: > >> On Fri, 02 Jan 2015, adamn...@gmail.com wrote: >>> On Thu, 01 Jan 2015 10:12:06 +0100 >>> Beno?t Minisini wrote: >>> ...to all Gambas users and developers! I'd like to r

Re: [Gambas-user] Communicating to hosted forms...

2015-01-01 Thread Tobias Boege
On Thu, 01 Jan 2015, Stephen wrote: >The only way that I can see out of my conundrum is to create a > property in in each form to which updated information is to be pushed. > The property write will process the received data and put it where it > needs to go. > Sounds suspiciously like you

[Gambas-user] SDL2 : "Channel" Class has not property nor metods...

2015-01-01 Thread Ru Vuott
Hello Benoît, SDL2 "Channel" Class doesn't seems at present to have active property nor metods. Doesn't it ? Regards vuott -- Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel a

Re: [Gambas-user] Communicating to hosted forms...

2015-01-01 Thread Stephen
When, at the project level, all controls on all forms are set to be public, the 'Public' property for each control on each form continues to indicate that it is NOT Public. This is misleading. The 'Public' property of all controls should reflect the reality, that it is publicly visible,

Re: [Gambas-user] IF Not (any boolean) then

2015-01-01 Thread Tobias Boege
On Fri, 02 Jan 2015, adamn...@gmail.com wrote: > On Thu, 1 Jan 2015 23:13:20 +0100 > Tobias Boege wrote: > > > On Thu, 01 Jan 2015, Lewis Balentine wrote: > > > If I use "NOT" in an "IF" statement with any boolean (function or value) > > > then I get an error. example: > > > > > > If NOT (Boole

Re: [Gambas-user] IF Not (any boolean) then

2015-01-01 Thread adamn...@gmail.com
On Thu, 1 Jan 2015 23:13:20 +0100 Tobias Boege wrote: > On Thu, 01 Jan 2015, Lewis Balentine wrote: > > If I use "NOT" in an "IF" statement with any boolean (function or value) > > then I get an error. example: > > > > If NOT (BooleanFuntion) then Do this > > unknown identifier: NOT > > > > Am

Re: [Gambas-user] IF Not (any boolean) then

2015-01-01 Thread adamn...@gmail.com
On Thu, 01 Jan 2015 16:07:10 -0600 Lewis Balentine wrote: > If I use "NOT" in an "IF" statement with any boolean (function or value) > then I get an error. example: > > If NOT (BooleanFuntion) then Do this > unknown identifier: NOT > > Am I mistaken in thinking that one should be able to use t

Re: [Gambas-user] IF Not (any boolean) then

2015-01-01 Thread Tobias Boege
On Thu, 01 Jan 2015, Lewis Balentine wrote: > If I use "NOT" in an "IF" statement with any boolean (function or value) > then I get an error. example: > > If NOT (BooleanFuntion) then Do this > unknown identifier: NOT > > Am I mistaken in thinking that one should be able to use the NOT > operat

Re: [Gambas-user] Happy new year...

2015-01-01 Thread adamn...@gmail.com
On Thu, 1 Jan 2015 22:52:43 +0100 Tobias Boege wrote: > On Fri, 02 Jan 2015, adamn...@gmail.com wrote: > > On Thu, 01 Jan 2015 10:12:06 +0100 > > Beno?t Minisini wrote: > > > > > ...to all Gambas users and developers! > > > > > > I'd like to release Gambas 3.7 as soon as possible, because I wo

[Gambas-user] IF Not (any boolean) then

2015-01-01 Thread Lewis Balentine
If I use "NOT" in an "IF" statement with any boolean (function or value) then I get an error. example: If NOT (BooleanFuntion) then Do this unknown identifier: NOT Am I mistaken in thinking that one should be able to use the NOT operator in this manner ? I can get around this by changing the s

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Tobias Boege
On Fri, 02 Jan 2015, adamn...@gmail.com wrote: > On Thu, 01 Jan 2015 10:12:06 +0100 > Beno?t Minisini wrote: > > > ...to all Gambas users and developers! > > > > I'd like to release Gambas 3.7 as soon as possible, because I won't be > > able to create a Gambas 3.6.3 release. Too much work to ba

Re: [Gambas-user] Communicating to hosted forms...

2015-01-01 Thread Charlie Reinl
Am Donnerstag, den 01.01.2015, 21:57 +0100 schrieb Tobias Boege: > On Thu, 01 Jan 2015, Stephen wrote: > > I just extracted the archive from the email, loaded it and of course it > > works perfectly. > > > > I had this; > > > > mhform1.textbox2.text = value > > > > and > > > > mgform2.textbox2

Re: [Gambas-user] Happy new year...

2015-01-01 Thread adamn...@gmail.com
On Thu, 01 Jan 2015 10:12:06 +0100 Benoît Minisini wrote: > ...to all Gambas users and developers! > > I'd like to release Gambas 3.7 as soon as possible, because I won't be > able to create a Gambas 3.6.3 release. Too much work to backport some > important fixes. > > Please tell me if you ha

Re: [Gambas-user] Communicating to hosted forms...

2015-01-01 Thread Tobias Boege
On Thu, 01 Jan 2015, Stephen wrote: > I just extracted the archive from the email, loaded it and of course it > works perfectly. > > I had this; > > mhform1.textbox2.text = value > > and > > mgform2.textbox2.text = value > > in my original code but I kept getting "null object" every time it t

Re: [Gambas-user] Communicating to hosted forms...

2015-01-01 Thread Stephen
I just extracted the archive from the email, loaded it and of course it works perfectly. I had this; mhform1.textbox2.text = value and mgform2.textbox2.text = value in my original code but I kept getting "null object" every time it tried execute the line. Thanks for putting up with my stupi

Re: [Gambas-user] Software Farm : Authentication failed.

2015-01-01 Thread Charlie Reinl
Am Donnerstag, den 01.01.2015, 17:47 +0100 schrieb Benoît Minisini: > Le 01/01/2015 12:59, Charlie Reinl a écrit : > > Salut Benoît, > > I wrote this, but in 6771 , no change. > > Ah. GSF stays for "gambas software farm" > > > > thanks for all and a happy new year > > Charlie > > > > Am Montag, den

Re: [Gambas-user] Software Farm : Authentication failed.

2015-01-01 Thread Benoît Minisini
Le 01/01/2015 12:59, Charlie Reinl a écrit : > Salut Benoît, > I wrote this, but in 6771 , no change. > Ah. GSF stays for "gambas software farm" > > thanks for all and a happy new year > Charlie > > Am Montag, den 15.12.2014, 18:23 +0100 schrieb Charlie Reinl: >> Salut Benoît, >> >> version r6741,

Re: [Gambas-user] Gambas translator behaviour (expected or bug?)

2015-01-01 Thread Willy Raets
On do, 2015-01-01 at 10:02 +0100, Benoît Minisini wrote: > Le 30/12/2014 23:34, Willy Raets a écrit : > > On di, 2014-12-30 at 23:04 +0100, Benoît Minisini wrote: > >> Le 30/12/2014 14:57, Willy Raets a écrit : > >>> Hi all, > >>> > >>> I was wondering next about the Gambas translator: > >>> When i

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Jussi Lahtinen
I reported about failure of "Read Watch" test (ERROR 259). I expect watch to call read event because of line: Shell "echo test > " & sTemp Wait But it doesn't. Is my method flawed or what is going on? See attachment. Jussi On Thu, Jan 1, 2015 at 11:12 AM, Benoît Minisini < gam...@users.source

Re: [Gambas-user] Search/Replace issue with IDE

2015-01-01 Thread Jussi Lahtinen
I tested this with latest revision and it seems to be fixed already. Jussi On Sun, Dec 21, 2014 at 8:31 AM, Francis Payne wrote: > > I seem to have found a search/replace problem with the IDE in 3.5.2 > > If you search for a string and replace it with a zero length string > (basically remove t

Re: [Gambas-user] Software Farm : Authentication failed.

2015-01-01 Thread Charlie Reinl
Salut Benoît, I wrote this, but in 6771 , no change. Ah. GSF stays for "gambas software farm" thanks for all and a happy new year Charlie Am Montag, den 15.12.2014, 18:23 +0100 schrieb Charlie Reinl: > Salut Benoît, > > version r6741, I'm logged in to the GSF and open the Configuration by > push

Re: [Gambas-user] Happy new year...

2015-01-01 Thread Jorge Carrión
Best wishes for you and for Gambas this new year. And for all Gambas users in the world! 2015-01-01 10:12 GMT+01:00 Benoît Minisini : > ...to all Gambas users and developers! > > I'd like to release Gambas 3.7 as soon as possible, because I won't be > able to create a Gambas 3.6.3 release. Too mu

[Gambas-user] Happy new year...

2015-01-01 Thread Benoît Minisini
...to all Gambas users and developers! I'd like to release Gambas 3.7 as soon as possible, because I won't be able to create a Gambas 3.6.3 release. Too much work to backport some important fixes. Please tell me if you have something blocking that release: Fabien, Tobias, Adrien, anyone needin

Re: [Gambas-user] Gambas translator behaviour (expected or bug?)

2015-01-01 Thread Benoît Minisini
Le 30/12/2014 23:34, Willy Raets a écrit : > On di, 2014-12-30 at 23:04 +0100, Benoît Minisini wrote: >> Le 30/12/2014 14:57, Willy Raets a écrit : >>> Hi all, >>> >>> I was wondering next about the Gambas translator: >>> When importing .po files send to me by a translator, only the empty >>> strin