Re: [Gambas-user] SelectAll feature

2010-11-12 Thread Demosthenes Koptsis
On Fri, 2010-11-12 at 08:49 +0100, Rolf-Werner Eilert wrote: Ok, SHIFT+END works like CTRL+A but only if cursor is at the beginning of the text. if cursor is in the middle of the text selects from the positions until the end. See video. http://www.youtube.com/watch?v=ijlTiX7mEfg i think these

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Rolf-Werner Eilert
Let me add one thing: you could still use Shift + Pos1/End to select all. Everything you have to do is to first jump to the end or beginning of the line first: Pos1, then Shift+End OR End, then Shift+Pos1. But it remains that you do not get a cursor in the same field after clicking on another o

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Rolf-Werner Eilert
Ok, Demosthenes, the guys got you wrong :-) We thought you mean a running application, not the IDE. Am 12.11.2010 02:48, schrieb Demosthenes Koptsis: > i speak about the following: > > i am in IDE of Gambas2. > I click on a Button1 on my FMain. > I click on Name property. > The property is get f

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Demosthenes Koptsis
i speak about the following: i am in IDE of Gambas2. I click on a Button1 on my FMain. I click on Name property. The property is get focus and selects all text. If i click in gridview in text area and i want to select all again the text of Name property is not possible. When i press CRTL+A the c

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Michael
I am using Gambas2 and the .SelectAll feature when a textbox gets focus. It works perfectly on my Ubuntu 64 bit. I am using the GB.qt components. Regards Mike On 12/11/10 07:19, Demosthenes Koptsis wrote: > The SelectAll is for the Gambas2 application, not a mine one. > > This feature is missing

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Matti
I don't understand. What do you mean with "not a mine one"? Here, in Gambas 2 (and 3) TextBox.SelectAll works fine. Am 11.11.2010 21:19, schrieb Demosthenes Koptsis: > The SelectAll is for the Gambas2 application, not a mine one. > > This feature is missing from Gambas2. > > On Thu, 2010-11-11

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread BenoƮt Minisini
> Good morning to all, > > While setting properties or any text that is in a textbox i wanted to > press CTRL+A to select all the word and then press BACKSPACE to delete > it and next to write a new one. > > But the CTRL+A is not working and i need to press many times the arrow > keys to set the

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Demosthenes Koptsis
The SelectAll is for the Gambas2 application, not a mine one. This feature is missing from Gambas2. On Thu, 2010-11-11 at 20:47 +0100, Matti wrote: > If you want to do it via CTRL+A, you have to write a keypress event for the > form: > > Public Sub Form_KeyPress() > If Key.Code = Key["A"] And

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Matti
If you want to do it via CTRL+A, you have to write a keypress event for the form: Public Sub Form_KeyPress() If Key.Code = Key["A"] And If Key.Control Then TextBox1.SelectAll Endif End And if you want to have the text selected automatically when the text box gets the focus, do: Public S

[Gambas-user] SelectAll feature

2010-11-10 Thread Demosthenes Koptsis
Good morning to all, While setting properties or any text that is in a textbox i wanted to press CTRL+A to select all the word and then press BACKSPACE to delete it and next to write a new one. But the CTRL+A is not working and i need to press many times the arrow keys to set the pointer to the e