Re: [Gambas-user] OOT: Email filtering for gambas issue

2011-01-05 Thread MSulchan Darmawan
On Wed, 5 Jan 2011 17:37:11 +0200 Jussi Lahtinen wrote: > ? > Every message from gambas mailing list has [Gambas-user] in subject > line..? I see now Benoît using google code for gambas bug ticket, what I want to do is to filter the ticket appart from mailing list. So I propose [gb-issue] if it

Re: [Gambas-user] OOT: Email filtering for gambas issue

2011-01-05 Thread Ricardo Díaz Martín
Yes 2011/1/5 Jussi Lahtinen > ? > Every message from gambas mailing list has [Gambas-user] in subject line..? > > Jussi > On Wed, Jan 5, 2011 at 04:25, MSulchan Darmawan > wrote: > > > Dear all, > > > > I did by filtering From header, but I saw someone accidently hit reply > > and send the emai

[Gambas-user] Difference in SpinBox behavior between gb.gtk & gb.qt

2011-01-05 Thread vikram
Hi, The SpinBox control when used in an application using the gb.gtk component allows the user to input values that are larger than it's MaxValue property. Say the MaxValue for a SpinBox is 100, the user can enter 999 and click the button to move to the next form, the SpinBox now automatically

Re: [Gambas-user] Did anyone have a script to record webcame picture in video files

2011-01-05 Thread firman
I'm newbe in programing language, can u give me a way to use mencoder in my project Mr. Benoit, please? Benoît Minisini wrote: > >> OK Mr. Fabien.. I have a project for make a cctv monitoring system, then >> i >> used webcam for simulation my project. When i tried to make program using >> gam

Re: [Gambas-user] New MaskBox control

2011-01-05 Thread Michael
Benoit, Great Idea. I have installed version 3447 and confirmed this with svn -info but I cannot find the MaskBox in the toolbox. This may be my lack of Linux. I have installed with: cd trunk svn update ./reconf ./configure -C make When I look at the properties of file /usr/local/bin/gbx3 it has

Re: [Gambas-user] New MaskBox control

2011-01-05 Thread Benoît Minisini
> To enter a french currency, set Mask to "999 999 990,00 €" > Forget that example, it does not work well at the moment... -- Benoît Minisini -- Learn how Oracle Real Application Clusters (RAC) One Node allows cu

[Gambas-user] New MaskBox control

2011-01-05 Thread Benoît Minisini
Hi, As an intermediate goal before rewriting the ValueBox control, I have implemented a MaskBox control, that is a TextBox with a mask. How does it work ? By setting the mask property, you define which characters are non-editable separators, and which characters can be entered by the user At

Re: [Gambas-user] OOT: Email filtering for gambas issue

2011-01-05 Thread Jussi Lahtinen
? Every message from gambas mailing list has [Gambas-user] in subject line..? Jussi On Wed, Jan 5, 2011 at 04:25, MSulchan Darmawan wrote: > Dear all, > > I did by filtering From header, but I saw someone accidently hit reply > and send the email to mailing list instead of replying in google cod

Re: [Gambas-user] KeyPress event with grid view

2011-01-05 Thread Phạm Quang Dương
Thank for reply, Here is my form. I tried remove all code and run the "fresh" form but nothing happens. 2011/1/4 Benoît Minisini > > Hi and Happy new year ! > > > > With a grid view on a form I can get KeyPress event. It's fine. > > But with a grid view contained in a vsplit view, no KeyPress e

Re: [Gambas-user] Eval Gambas2

2011-01-05 Thread Ron
On 5-1-2011 10:23, Benoît Minisini wrote: >> Hi, >> >> I'm trying to implement some sort of basic scripting with the use of >> Eval() inside my project. >> >> It works for a lot of math, formatting and comparison commands and works >> quite nicely. >> >> But I need the IF THEN to work too. >> >> II

Re: [Gambas-user] Eval Gambas2

2011-01-05 Thread Benoît Minisini
> Hi, > > I'm trying to implement some sort of basic scripting with the use of > Eval() inside my project. > > It works for a lot of math, formatting and comparison commands and works > quite nicely. > > But I need the IF THEN to work too. > > IIf ( Test AS Boolean , TrueExpression , FalseExpre

[Gambas-user] Eval Gambas2

2011-01-05 Thread Ron
Hi, I'm trying to implement some sort of basic scripting with the use of Eval() inside my project. It works for a lot of math, formatting and comparison commands and works quite nicely. But I need the IF THEN to work too. IIf ( Test AS Boolean , TrueExpression , FalseExpression , FalseExpres