Re: [Gambas-user] Tableview question

2009-10-26 Thread Fabien Bodard
2009/10/24 Werner : > richard terry wrote: >> I've need to use the table view to allow user to edit/add new cells >> >> Despite reading Doc's and looking at the  examples in the IDe I'm no closer >> to >> getting the concept of how the thing works, so I wonder if anyone could >> explain its use in

Re: [Gambas-user] Tableview question

2009-10-26 Thread Werner
richard terry wrote: > I've need to use the table view to allow user to edit/add new cells > > Despite reading Doc's and looking at the examples in the IDe I'm no closer > to > getting the concept of how the thing works, so I wonder if anyone could > explain its use in simple terms and show me

Re: [Gambas-user] Tableview question

2009-10-25 Thread richard terry
thanks, I'll digest all the replies. Richard On Monday 26 October 2009 04:10:53 you wrote: > > With a form and a tableview > > I hope you understand more, in the _Save Event, you validate the > entered value and do what you want such as adding a new row > > ' Gambas class file > > > > > P

Re: [Gambas-user] Tableview question

2009-10-25 Thread Fabien Bodard
With a form and a tableview I hope you understand more, in the _Save Event, you validate the entered value and do what you want such as adding a new row ' Gambas class file PUBLIC SUB Form_Open() TableView1.Rows.Count = 3 TableView1.Columns.Count = 2 TableView1[0, 0].Text = "tic" Ta

Re: [Gambas-user] Tableview question

2009-10-25 Thread Fabien Bodard
on the _data event version or gridview mode ? 2009/10/24 richard terry : > I've need to use the table view to allow user to edit/add new cells > > Despite reading Doc's and looking at the  examples in the IDe I'm no closer to > getting the concept of how the thing works, so I wonder if anyone cou

Re: [Gambas-user] Tableview question

2009-10-25 Thread richard terry
On Sunday 25 October 2009 21:51:12 you wrote: > richard terry wrote: > > I've need to use the table view to allow user to edit/add new cells > > > > Despite reading Doc's and looking at the examples in the IDe I'm no > > closer to getting the concept of how the thing works, so I wonder if > > anyo

Re: [Gambas-user] Tableview question

2009-10-25 Thread Werner
richard terry wrote: > I've need to use the table view to allow user to edit/add new cells > > Despite reading Doc's and looking at the examples in the IDe I'm no closer > to > getting the concept of how the thing works, so I wonder if anyone could > explain its use in simple terms and show me

Re: [Gambas-user] Tableview question

2009-10-24 Thread Charlie Reinl
Am Sonntag, den 25.10.2009, 06:57 +1100 schrieb richard terry: > I've need to use the table view to allow user to edit/add new cells > > Despite reading Doc's and looking at the examples in the IDe I'm no closer > to > getting the concept of how the thing works, so I wonder if anyone could > e

[Gambas-user] Tableview question

2009-10-24 Thread richard terry
I've need to use the table view to allow user to edit/add new cells Despite reading Doc's and looking at the examples in the IDe I'm no closer to getting the concept of how the thing works, so I wonder if anyone could explain its use in simple terms and show me a simple sample of how to allow;