Re: [Gambas-user] Feature request: A preview button in the wiki editor

2014-10-05 Thread Benoît Minisini
Le 04/10/2014 17:12, Tobias Boege a écrit : Hi, when I try to update a wiki page, it takes me several (more than I want to admit) tries to get the markup right. For whatever reason. It would be nice, in the favour of cleaner page histories, to have a preview button when editing a page, not

Re: [Gambas-user] Feature request: A preview button in the wiki editor

2014-10-05 Thread Tobias Boege
On Sun, 05 Oct 2014, Beno?t Minisini wrote: Le 04/10/2014 17:12, Tobias Boege a ?crit : Hi, when I try to update a wiki page, it takes me several (more than I want to admit) tries to get the markup right. For whatever reason. It would be nice, in the favour of cleaner page histories,

Re: [Gambas-user] Feature request: A preview button in the wiki editor

2014-10-05 Thread Benoît Minisini
Le 05/10/2014 17:57, Tobias Boege a écrit : On Sun, 05 Oct 2014, Beno?t Minisini wrote: Le 04/10/2014 17:12, Tobias Boege a ?crit : Hi, when I try to update a wiki page, it takes me several (more than I want to admit) tries to get the markup right. For whatever reason. It would be nice, in

Re: [Gambas-user] Feature request: A preview button in the wiki editor

2014-10-05 Thread Tobias Boege
On Sun, 05 Oct 2014, Beno?t Minisini wrote: Le 05/10/2014 17:57, Tobias Boege a ?crit : On Sun, 05 Oct 2014, Beno?t Minisini wrote: Le 04/10/2014 17:12, Tobias Boege a ?crit : Hi, when I try to update a wiki page, it takes me several (more than I want to admit) tries to get the markup

Re: [Gambas-user] Feature request: A preview button in the wiki editor

2014-10-05 Thread Benoît Minisini
Le 05/10/2014 18:36, Tobias Boege a écrit : Thanks, but one class is missing: PrioSet. It's in the Gambas part of gb.data. BTW: gb.data has a part written in Gambas now. Is that of importance to packagers? Do I have to add information somewhere? IIRC gambas-team's gb.data package did contain

Re: [Gambas-user] Feature request: A preview button in the wiki editor

2014-10-05 Thread Tobias Boege
On Sun, 05 Oct 2014, Beno?t Minisini wrote: Le 04/10/2014 17:12, Tobias Boege a ?crit : Hi, when I try to update a wiki page, it takes me several (more than I want to admit) tries to get the markup right. For whatever reason. It would be nice, in the favour of cleaner page histories,

[Gambas-user] AND and OR

2014-10-05 Thread Jørn Erik Mørne
Why is it not allowed to use AND and OR in the same logical test? -- Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you

Re: [Gambas-user] AND and OR

2014-10-05 Thread Tobias Boege
On Sun, 05 Oct 2014, J??rn Erik M??rne wrote: Why is it not allowed to use AND and OR in the same logical test? It is allowed and works: $ gbx3 -e (False And Not False) Or (False Or Not False) True Maybe you refer to the AND IF and OR IF keywords in an IF statement? Regards, Tobi --

Re: [Gambas-user] AND and OR

2014-10-05 Thread Jørn Erik Mørne
Den 05. okt. 2014 21:11, skrev Tobias Boege: On Sun, 05 Oct 2014, J??rn Erik M??rne wrote: Why is it not allowed to use AND and OR in the same logical test? It is allowed and works: $ gbx3 -e (False And Not False) Or (False Or Not False) True Maybe you refer to the AND IF and OR IF

[Gambas-user] Possible bug gb.gtk in Gambas 3.5.90

2014-10-05 Thread Willy Raets
Hi, I noticed that with Gambas 3.5.90, the TextBox and TextArea do not accept input from keyboard with gb.gtk on LXDE. It works fine with gb.qt4. I haven't noticed this problem on other desktops (even LXDE) but that was all with Gambas 3.5.x. It does not occur on Gambas 3.5.4 on Lubuntu 12.04 -

Re: [Gambas-user] AND and OR

2014-10-05 Thread Jussi Lahtinen
The extra if enables short-circuiting http://en.wikipedia.org/wiki/Short-circuit_evaluation and thus it is very useful in some cases. Example, you can write if then structures like this: If hObject Null And If hObject.SomeProperty = True Then Without the extra if this would fail, if the hObject

Re: [Gambas-user] AND and OR

2014-10-05 Thread Jørn Erik Mørne
Den 05. okt. 2014 23:19, skrev Jussi Lahtinen: The extra if enables short-circuiting http://en.wikipedia.org/wiki/Short-circuit_evaluation and thus it is very useful in some cases. Example, you can write if then structures like this: If hObject Null And If hObject.SomeProperty = True Then

Re: [Gambas-user] Possible bug gb.gtk in Gambas 3.5.90

2014-10-05 Thread Benoît Minisini
Le 05/10/2014 23:11, Willy Raets a écrit : Hi, I noticed that with Gambas 3.5.90, the TextBox and TextArea do not accept input from keyboard with gb.gtk on LXDE. It works fine with gb.qt4. I haven't noticed this problem on other desktops (even LXDE) but that was all with Gambas 3.5.x. It

Re: [Gambas-user] Tableview behaviour

2014-10-05 Thread Benoît Minisini
Le 04/10/2014 09:22, bill-lancaster a écrit : The attached example has a tableview with values in column 0, click on one of those values and it goes into column 1. Alternatively a new value may be entered in column 1. It all works fine but the return key causes unwanted data in column 1.

Re: [Gambas-user] Strange error after switching PopUpMenu

2014-10-05 Thread Benoît Minisini
Le 30/09/2014 16:42, Rolf-Werner Eilert a écrit : Am 30.09.2014 16:11, schrieb Tobias Boege: On Tue, 30 Sep 2014, Tobias Boege wrote: On Tue, 30 Sep 2014, Rolf-Werner Eilert wrote: I tried to set the PopUpMenu property in the IDE to the (one and only) menu mnDatei in the project. Suddenly I