[Gambas-user] Tab size...

2018-05-18 Thread sbungay
I have set the tab size to 1 space in both the Tools->Preferences->Editor->Default tab size and also in the Project->Properties->Options areas, yet when I highlight a block of code and press [Tab] to move the block to where I want it the editor always indents by 2 spaces for each press of the [

Re: [Gambas-user] Tab size setting...

2016-01-10 Thread Stephen
On 01/10/2016 10:00 AM, Benoît Minisini wrote: > Le 10/01/2016 15:27, Stephen a écrit : >> GAMBAS 3.8.3 >> Fedora 23 in a VM >> Mate Desktop >> >> I have set the tab size to 1 in Tools->Preferences->Editor and in >> Project->Properties->Options, yet pressing the TAB key still yields 2 >> space

Re: [Gambas-user] Tab size setting...

2016-01-10 Thread Benoît Minisini
Le 10/01/2016 15:27, Stephen a écrit : > GAMBAS 3.8.3 > Fedora 23 in a VM > Mate Desktop > > I have set the tab size to 1 in Tools->Preferences->Editor and in > Project->Properties->Options, yet pressing the TAB key still yields 2 > spaces. > I've saved the project and reloaded (equivalent to t

[Gambas-user] Tab size setting...

2016-01-10 Thread Stephen
GAMBAS 3.8.3 Fedora 23 in a VM Mate Desktop I have set the tab size to 1 in Tools->Preferences->Editor and in Project->Properties->Options, yet pressing the TAB key still yields 2 spaces. I've saved the project and reloaded (equivalent to turning it off and turning it on) but no Joy. Am I mi

Re: [Gambas-user] Tab Strip

2012-10-25 Thread Keith Clark
On 12-10-25 03:21 PM, Keith Clark wrote: > I'm using a TabStrip for the first time and not understanding it 100% yet. > > I've created one with 5 tabs on it. I noticed that if I shrink the > control, there is another 'red outlined' frame behind it. In fact, > there are 3 more. If I shrink the fi

[Gambas-user] Tab Strip

2012-10-25 Thread Keith Clark
I'm using a TabStrip for the first time and not understanding it 100% yet. I've created one with 5 tabs on it. I noticed that if I shrink the control, there is another 'red outlined' frame behind it. In fact, there are 3 more. If I shrink the first red frame, it will eventually start to hide

Re: [Gambas-user] TAB and TextArea

2012-08-01 Thread Matti
I agree. It was just the "oops"-feeling when you move through a form with TAB and don't get further. But then you have the mouse. I think, indentation is more important - leave it this way. Am 01.08.2012 22:45, schrieb Tobias Boege: > On Wed, 01 Aug 2012, Matti wrote: >> Recently, there was a que

Re: [Gambas-user] TAB and TextArea

2012-08-01 Thread Tobias Boege
On Wed, 01 Aug 2012, Matti wrote: > Recently, there was a question about the TAB Focus. Testing this, I saw: > In every control the TAB key is used to move the cursor to the next control. > But TextArea behaves different: the TAB key inserts spaces into the control > and > doesn't move the cursor

[Gambas-user] TAB and TextArea

2012-08-01 Thread Matti
Recently, there was a question about the TAB Focus. Testing this, I saw: In every control the TAB key is used to move the cursor to the next control. But TextArea behaves different: the TAB key inserts spaces into the control and doesn't move the cursor. I'm not sure if this is wanted behaviour or

Re: [Gambas-user] TAB on keyboard

2012-02-19 Thread Benoît Minisini
Le 06/02/2012 14:40, Willy Raets a écrit : > Hi All, >... > Is there a way in Gambas2 (or Gambas3), when using TAB-key on keyboard > to have it skip (in my case all read only) controls and just go to those > that matter for input? > > Thanks, > > Willy > In revision #4490, I added a Control.NoTabF

Re: [Gambas-user] TAB on keyboard

2012-02-11 Thread Willy Raets
Hi Charles, On za, 2012-02-11 at 05:10 -0800, charlesg wrote: > > Willy Raets wrote: > > > > Is there a way in Gambas2 (or Gambas3), when using TAB-key on keyboard > > to have it skip (in my case all read only) controls and just go to those > > that matter for input? > > > > 2 workarounds: >

Re: [Gambas-user] TAB on keyboard

2012-02-11 Thread charlesg
Willy Raets wrote: > > Is there a way in Gambas2 (or Gambas3), when using TAB-key on keyboard > to have it skip (in my case all read only) controls and just go to those > that matter for input? > 2 workarounds: firstly: > Public Sub TextBox3_GotFocus() > TextBox1.SetFocus > End > secondl

Re: [Gambas-user] TAB on keyboard

2012-02-11 Thread Benoît Minisini
Le 06/02/2012 14:40, Willy Raets a écrit : > Hi All, > > When making forms I determine hierarchy of the controls on the form for > navigating the form with TAB-key during runtime. This to make the forms > more user friendly. > > Simple example: > --- > Application with 1 form with 3 Val

[Gambas-user] TAB on keyboard

2012-02-06 Thread Willy Raets
Hi All, When making forms I determine hierarchy of the controls on the form for navigating the form with TAB-key during runtime. This to make the forms more user friendly. Simple example: --- Application with 1 form with 3 ValueBoxes. ValBox1 and ValBox2 for input ValBox3 for output (

Re: [Gambas-user] tab

2009-12-06 Thread Robert JUHASZ
Perfect, thx! 2009/12/5 Fabien Bodard > 2009/12/5 yuhej : > > > > Hi, > > > > Is there any option to hide some of the tabs of a tab control? For > different > > users I wish to show different information (depending on their right) but > I > > don't know if I may make invisible or not enabled som

Re: [Gambas-user] tab

2009-12-05 Thread Fabien Bodard
2009/12/5 yuhej : > > Hi, > > Is there any option to hide some of the tabs of a tab control? For different > users I wish to show different information (depending on their right) but I > don't know if I may make invisible or not enabled some of the tabs. > TabStrip1[0].Visible = FALSE orTabSt

[Gambas-user] tab

2009-12-05 Thread yuhej
Hi, Is there any option to hide some of the tabs of a tab control? For different users I wish to show different information (depending on their right) but I don't know if I may make invisible or not enabled some of the tabs. Another quesion: can I change the order of the tabs (in design time)?

Re: [Gambas-user] TAB order of controls

2009-09-08 Thread Benoît Minisini
> Is there a way to change the order in which controls are looped through > if you press tab and have a few in a form? > > I can't seem to find it. > What is the key in this? > > I have some datacontrol fields, but it goes from the first to the third > back to the second... > > Regards, > Ron_2n

Re: [Gambas-user] TAB order of controls

2009-09-08 Thread Demosthenes Koptsis
Yes you can change TAB order from Hierarchy, move up/down controls sets TAB order. On Tue, Sep 8, 2009 at 3:11 PM, Ron wrote: > > Is there a way to change the order in which controls are looped through > if you press tab and have a few in a form? > > I can't seem to find it. > What is the key in t

[Gambas-user] TAB order of controls

2009-09-08 Thread Ron
Is there a way to change the order in which controls are looped through if you press tab and have a few in a form? I can't seem to find it. What is the key in this? I have some datacontrol fields, but it goes from the first to the third back to the second... Regards, Ron_2nd. ---