Re: [Gambas-user] Howto: Cancel a keypress in a textarea

2009-11-20 Thread bbb888
Thanks Shordi, Amazingly obvious now I have the answer :clap: bruce -- View this message in context: http://old.nabble.com/Howto%3A-Cancel-a-keypress-in-a-textarea-tp26422301p26443625.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] DataCombo, key_press

2009-11-20 Thread Tomas Costa rivas
I have a list of items( over 8000) . Each item starts by a numeric part(two digits) that are used to classify the item, and according to this digits certain textbox are visible and certain other not. I want a event when I write the second digit. I write in a datacombo instead of "expand(popup) and

Re: [Gambas-user] Howto: Cancel a keypress in a textarea

2009-11-20 Thread Stefano Palmeri
Il venerdì 20 novembre 2009 05:20:38 bbb888 ha scritto: > I'm trying to capture and ignore, textwise, use of the tab key in a > textarea control. > I have set up an OnKeyPress handler that moves the focus to the next > control, but the tab is still inserted in the textarea.text. > > tia > bruce PU

Re: [Gambas-user] Changing the key value in a collection

2009-11-20 Thread Jussi Lahtinen
Probably not good answer, but can you use something else as key? Maybe you should add ID value for those items. If value you use for key is editable, you should be aware that collection can't have same key twice... Jussi On Fri, Nov 20, 2009 at 06:16, bbb888 wrote: > > I have a situation where

Re: [Gambas-user] File select broken ?

2009-11-20 Thread Pino Zollo
Il giovedì 19 novembre 2009 21:04:19 hai scritto: > > - > > ' Filter for our user file open dialog. All image types supported by > > Gambas PRIVATE FUNCTION FileFilter(OPTIONAL All AS Boolean = FALSE) AS > > String[] DIM filter AS NEW String[] > >   IF All THEN > >     filte

[Gambas-user] Problem building Gambas3 on openSUSE 11.2

2009-11-20 Thread Werner
Suse 11.2 came out last week. I seem to remember that it worked fine with 11.1 using qt3. My problem is that I can't configure support for Qt (I don't care about the other parts). I am trying this now with trunk rev 2429 but have also tried it with a trunk from maybe 10 days ago. The trouble see

Re: [Gambas-user] Howto: Cancel a keypress in a textarea

2009-11-20 Thread Jorge Carrión
Use STOP EVENT after you code. Regards 2009/11/20 bbb888 > > I'm trying to capture and ignore, textwise, use of the tab key in a > textarea > control. > I have set up an OnKeyPress handler that moves the focus to the next > control, but the tab is still inserted in the textarea.text. > > tia > b