Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-05 Thread Doriano Blengino
Benoît Minisini ha scritto: Benoît Minisini ha scritto: Benoît Minisini ha scritto: When in the tableview (in edit mode) I press an arrow key, the cursor slips on every possible cell in the request direction, until it finds the end of the tableview. But this is not enough: if the

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-05 Thread Benoît Minisini
Don't take me wrong. Sometimes it seems to me that you don't read the whole message before replying, and sometimes it seems to me that the real problem is not in evidence (english language plays a role in this...). You say that you just added a Click event handler to get the program work.

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-05 Thread Doriano Blengino
Benoît Minisini ha scritto: Don't take me wrong. Sometimes it seems to me that you don't read the whole message before replying, and sometimes it seems to me that the real problem is not in evidence (english language plays a role in this...). You say that you just added a Click event handler

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-04 Thread Doriano Blengino
Benoît Minisini ha scritto: I am modifying an old program, which uses a TableView to construct an invoice. The tableview is almost always in edit mode. With gambas version 2.0.0, the original version I used to write the program, there is no problem (not this one). Now I upgraded to gambas v.

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-04 Thread Benoît Minisini
Benoît Minisini ha scritto: I am modifying an old program, which uses a TableView to construct an invoice. The tableview is almost always in edit mode. With gambas version 2.0.0, the original version I used to write the program, there is no problem (not this one). Now I upgraded

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-04 Thread Benoît Minisini
Benoît Minisini ha scritto: Benoît Minisini ha scritto: I am modifying an old program, which uses a TableView to construct an invoice. The tableview is almost always in edit mode. With gambas version 2.0.0, the original version I used to write the program, there is no problem (not

[Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Doriano Blengino
I am modifying an old program, which uses a TableView to construct an invoice. The tableview is almost always in edit mode. With gambas version 2.0.0, the original version I used to write the program, there is no problem (not this one). Now I upgraded to gambas v. 2.15 (debian package

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Dimitris Anogiatis
Doriano, from the sample project you posted, I can verify the behavior you described when you use the arrow keys. If you click on individual cells it jumps fine. But if you try and type something on one cell and then click on the next one the text you typed before disappears. So perhaps a few

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Doriano Blengino
Dimitris Anogiatis ha scritto: Doriano, from the sample project you posted, I can verify the behavior you described when you use the arrow keys. If you click on individual cells it jumps fine. But if you try and type something on one cell and then click on the next one the text you typed

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Charlie Reinl
Am Donnerstag, den 03.12.2009, 18:24 +0100 schrieb Doriano Blengino: Dimitris Anogiatis ha scritto: Doriano, from the sample project you posted, I can verify the behavior you described when you use the arrow keys. If you click on individual cells it jumps fine. But if you try and type

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Doriano Blengino
Charlie Reinl ha scritto: Am Donnerstag, den 03.12.2009, 18:24 +0100 schrieb Doriano Blengino: Dimitris Anogiatis ha scritto: Doriano, from the sample project you posted, I can verify the behavior you described when you use the arrow keys. If you click on individual cells it jumps

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Dimitris Anogiatis
Doriano, On my system, when I use the mouse and click on a different cell it jumps just fine. The behavior (the error) that you described occurs when I use the cursor keys. What I meant by different approach was perhaps you should use something else other than the GotFocus event and LAST.Edit.

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Charlie Reinl
Am Donnerstag, den 03.12.2009, 18:47 +0100 schrieb Doriano Blengino: Charlie Reinl ha scritto: Am Donnerstag, den 03.12.2009, 18:24 +0100 schrieb Doriano Blengino: Dimitris Anogiatis ha scritto: Doriano, from the sample project you posted, I can verify the behavior you

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Doriano Blengino
Charlie Reinl ha scritto: Sorry Dariano, no meant, has not changed, even in 2.18.0 Revision: 2447 , the cursor moves from top left to bottom right and return if using left/right arrow key, or top to bottom and return if using up/down arrow key. Oh, tableview is a gambas written component

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Charlie Reinl
Am Donnerstag, den 03.12.2009, 21:32 +0100 schrieb Doriano Blengino: Charlie Reinl ha scritto: Sorry Dariano, no meant, has not changed, even in 2.18.0 Revision: 2447 , the cursor moves from top left to bottom right and return if using left/right arrow key, or top to bottom and return

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Charlie Reinl
Am Donnerstag, den 03.12.2009, 21:32 +0100 schrieb Doriano Blengino: Charlie Reinl ha scritto: Sorry Dariano, no meant, has not changed, even in 2.18.0 Revision: 2447 , the cursor moves from top left to bottom right and return if using left/right arrow key, or top to bottom and return

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Doriano Blengino
Charlie Reinl ha scritto: Am Donnerstag, den 03.12.2009, 21:32 +0100 schrieb Doriano Blengino: Charlie Reinl ha scritto: Sorry Dariano, no meant, has not changed, even in 2.18.0 Revision: 2447 , the cursor moves from top left to bottom right and return if using left/right arrow

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Benoît Minisini
I am modifying an old program, which uses a TableView to construct an invoice. The tableview is almost always in edit mode. With gambas version 2.0.0, the original version I used to write the program, there is no problem (not this one). Now I upgraded to gambas v. 2.15 (debian package

Re: [Gambas-user] Problem with tableview when in edit mode

2009-12-03 Thread Benoît Minisini
I am modifying an old program, which uses a TableView to construct an invoice. The tableview is almost always in edit mode. With gambas version 2.0.0, the original version I used to write the program, there is no problem (not this one). Now I upgraded to gambas v. 2.15 (debian