Re: [Gambas-user] Maskbox mask & text entry

2015-03-19 Thread Tobias Boege
On Thu, 19 Mar 2015, Tobias Boege wrote: > If you press a key and that is valid input for your current cell, the > corresponding character is put into that cell, *without* advancing the > current cell. > Correction: As Benoit said, this is because you reset the Text in the Change event. (Good. I

Re: [Gambas-user] Maskbox mask & text entry

2015-03-19 Thread Tobias Boege
On Thu, 19 Mar 2015, John Rose wrote: > On 18/03/15 11:30, John Rose wrote: > > I have a Maskbox with mask [A-Za-z][A-Za-z]. I noticed that the IDE > > does not show the MaxLength property. I want the user to be able to > > enter lower case & have the entry displayed as upper case for either > > of

Re: [Gambas-user] Maskbox mask & text entry

2015-03-19 Thread Benoît Minisini
Le 19/03/2015 18:29, John Rose a écrit : > On 18/03/15 11:30, John Rose wrote: >> I have a Maskbox with mask [A-Za-z][A-Za-z]. I noticed that the IDE >> does not show the MaxLength property. I want the user to be able to >> enter lower case & have the entry displayed as upper case for either >> of

Re: [Gambas-user] Maskbox mask & text entry

2015-03-19 Thread John Rose
On 18/03/15 11:30, John Rose wrote: > I have a Maskbox with mask [A-Za-z][A-Za-z]. I noticed that the IDE > does not show the MaxLength property. I want the user to be able to > enter lower case & have the entry displayed as upper case for either > of the 2 characters. When I run the attached Test

[Gambas-user] Maskbox mask & text entry

2015-03-18 Thread John Rose
I have a Maskbox with mask [A-Za-z][A-Za-z]. I noticed that the IDE does not show the MaxLength property. I want the user to be able to enter lower case & have the entry displayed as upper case for either of the 2 characters. When I run the attached Test app, it only seems to allow the entry of 1 c