Re: [Gambas-user] Ask About Table View

2008-10-04 Thread Leo Sendra
@Doriano Blengino Thank you very much for your second solution... It solves my problem :D >2) A hidden menu item, having "Enter" as its shortcut, will always work >and get fired. As there are two different keys to catch (Return and >Enter), then two different hidden menu items must be created.

Re: [Gambas-user] Ask About Table View

2008-10-04 Thread Leo Sendra
>1st question: >PUBLIC SUB TableView1_KeyPress() >IF Key.Code = Key.Return THEN TextBox1.SetFocus >IF Key.Code = Key.Enter THEN TextBox1.SetFocus >END It doesn't work since I have used an edit method when I open a form... PUBLIC SUB Form_Open() TableView1.edit END Any Idea???

Re: [Gambas-user] Ask About Table View

2008-10-04 Thread Doriano Blengino
Stefano Palmeri ha scritto: > Il mercoledì 1 ottobre 2008 22:57:51 Leo Sendra ha scritto: > >> Hello all... I have a problem in table view programming. >> >> As we know, we can edit table view by using an edit method. When I use this >> method, it take me to a cell in a table view. The >> proble

Re: [Gambas-user] Ask About Table View

2008-10-04 Thread Ron_1st
What are you talking about? On Friday 03 October 2008, Joshua Higgins wrote: > 2nd Question: declare as NEW String[] > > > On Wed, Oct 1, 2008 at 11:19 PM, Stefano Palmeri <[EMAIL PROTECTED]>wrote: > > > Il mercoledì 1 ottobre 2008 22:57:51 Leo Sendra ha scritto: > > > Hello all... I have

Re: [Gambas-user] Ask About Table View

2008-10-03 Thread Joshua Higgins
2nd Question: declare as NEW String[] On Wed, Oct 1, 2008 at 11:19 PM, Stefano Palmeri <[EMAIL PROTECTED]>wrote: > Il mercoledì 1 ottobre 2008 22:57:51 Leo Sendra ha scritto: > > Hello all... I have a problem in table view programming. > > > > As we know, we can edit table view by using an edit

Re: [Gambas-user] Ask About Table View

2008-10-01 Thread Stefano Palmeri
Il mercoledì 1 ottobre 2008 22:57:51 Leo Sendra ha scritto: > Hello all... I have a problem in table view programming. > > As we know, we can edit table view by using an edit method. When I use this > method, it take me to a cell in a table view. The > problem is, when I press an ENTER I want to ch

[Gambas-user] Ask About Table View

2008-10-01 Thread Leo Sendra
Hello all... I have a problem in table view programming. As we know, we can edit table view by using an edit method. When I use this method, it take me to a cell in a table view. The problem is, when I press an ENTER I want to change setfocus to a textbox (suppose that I have 2 components in a fo