Re: [Gambas-user] GridEditor

2009-06-23 Thread Jason Hackney
Wow, thanks for the expedient response, Benoît! -- Are you an open source citizen? Join us for the Open Source Bridge conference! Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250. Need another r

Re: [Gambas-user] GridEditor

2009-06-23 Thread Benoît Minisini
> > Attached is the code that will cause the Sig11. > > > > This is the error I'm seeing: > > > > (testGridEditor:14683): Gtk-WARNING **: gtk_widget_size_allocate(): > > attempt to allocate widget with width -3 and height -3 > > > > (testGridEditor:14683): Gtk-CRITICAL **: gtk_entry_set_text: asser

Re: [Gambas-user] GridEditor

2009-06-23 Thread Benoît Minisini
> Attached is the code that will cause the Sig11. > > This is the error I'm seeing: > > (testGridEditor:14683): Gtk-WARNING **: gtk_widget_size_allocate(): attempt > to allocate widget with width -3 and height -3 > > (testGridEditor:14683): Gtk-CRITICAL **: gtk_entry_set_text: assertion > `text !=

Re: [Gambas-user] GridEditor

2009-06-23 Thread Jason Hackney
Attached is the code that will cause the Sig11. This is the error I'm seeing: (testGridEditor:14683): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width -3 and height -3 (testGridEditor:14683): Gtk-CRITICAL **: gtk_entry_set_text: assertion `text != NULL' failed

Re: [Gambas-user] GridEditor

2009-06-23 Thread Benoît Minisini
> Attached is the relevant code/database. It's all very small. Essentially, > I'm trying to decipher how GridEditor works--so I've added some notes to > the source while I pick through it. > > I figured out the signal 11, it was in the SQL I was successfully > malforming. :-) > A signal 11 is a bu

Re: [Gambas-user] GridEditor

2009-06-22 Thread Jason Hackney
Attached is the relevant code/database. It's all very small. Essentially, I'm trying to decipher how GridEditor works--so I've added some notes to the source while I pick through it. I figured out the signal 11, it was in the SQL I was successfully malforming. :-) -jason > > >> I could further

Re: [Gambas-user] GridEditor

2009-06-22 Thread Frank Abramowski
Benoît Minisini schrieb: >> I know I'm beating this up, but I am getting incredibly frustrated trying >> to figure out how this thing works. >> >> Gambas 2.12 / Ubuntu 8.10 >> >> The first image is with gb.qt & gb.qt.ext components enabled (gtk >> disabled). - I only see a partial toolbar and no gr

Re: [Gambas-user] GridEditor

2009-06-22 Thread Benoît Minisini
> I know I'm beating this up, but I am getting incredibly frustrated trying > to figure out how this thing works. > > Gambas 2.12 / Ubuntu 8.10 > > The first image is with gb.qt & gb.qt.ext components enabled (gtk > disabled). - I only see a partial toolbar and no grid displays. > > The second imag

[Gambas-user] GridEditor

2009-06-21 Thread Jason Hackney
I know I'm beating this up, but I am getting incredibly frustrated trying to figure out how this thing works. Gambas 2.12 / Ubuntu 8.10 The first image is with gb.qt & gb.qt.ext components enabled (gtk disabled). - I only see a partial toolbar and no grid displays. The second image is with gb.g

Re: [Gambas-user] Grideditor

2009-01-12 Thread Gareth Bult
I will include a comprehensive example when I re-do as a "C" component .. - Original Message - From: "Jason Hackney" To: "mailing list for gambas users" Sent: Monday, 12 January, 2009 2:14:53 AM GMT +00:00 GMT Britain, Ireland, Portugal Subject: Re:

Re: [Gambas-user] Grideditor

2009-01-11 Thread Jason Hackney
Uhh ... obviously I didn't make it past this part, "Tick the Box and click Ok" when installing. The other bits I'm having trouble with I need to iron out. Thanks! -- Check out the new SourceForge.net Marketplace. It is th

Re: [Gambas-user] Grideditor

2009-01-11 Thread Gareth Bult
st for gambas users" Sent: Sunday, 11 January, 2009 9:42:27 PM GMT +00:00 GMT Britain, Ireland, Portugal Subject: Re: [Gambas-user] Grideditor Oh yeah, I was wondering if there was any status update regarding if/when it will be inclu

Re: [Gambas-user] Grideditor

2009-01-11 Thread Gareth Bult
these examples in and it can be included with the one I posted. Regards Richard > > :) > > Gareth. > > > - Original Message - > From: "Jason Hackney" > To: "Gambas Mailing List" > Sent: Sunday, 11 January, 2009 4:41:18 AM GMT +00:00 G

Re: [Gambas-user] Grideditor

2009-01-11 Thread Jason Hackney
Message - > > From: "Jason Hackney" > > To: "Gambas Mailing List" > > Sent: Sunday, 11 January, 2009 4:41:18 AM GMT +00:00 GMT Britain, > Ireland, > > Portugal Subject: [Gambas-user] Grideditor > > > > Is anyone using GridEditor with

Re: [Gambas-user] Grideditor

2009-01-11 Thread Jason Hackney
Oh yeah, I was wondering if there was any status update regarding if/when it will be included in the IDE. Sorry about hitting "reply-all" on the last post. ;-) -- Check out the new SourceForge.net Marketplace. It is the be

Re: [Gambas-user] Grideditor

2009-01-11 Thread richard terry
included with the one I posted. Regards Richard > > :) > > Gareth. > > > - Original Message - > From: "Jason Hackney" > To: "Gambas Mailing List" > Sent: Sunday, 11 January, 2009 4:41:18 AM GMT +00:00 GMT Britain, Ireland, > Portugal Su

Re: [Gambas-user] Grideditor

2009-01-11 Thread Gareth Bult
Hi, Yes, me ... :) Gareth. - Original Message - From: "Jason Hackney" To: "Gambas Mailing List" Sent: Sunday, 11 January, 2009 4:41:18 AM GMT +00:00 GMT Britain, Ireland, Portugal Subject: [Gambas-user] Grideditor Is anyone using GridEditor

[Gambas-user] Grideditor

2009-01-10 Thread Jason Hackney
Is anyone using GridEditor with the latest SVN? -- Check out the new SourceForge.net Marketplace. It is the best place to buy or sell services for just about anything Open Source. http://p.sf.net/sfu/Xq1LFB

[Gambas-user] Grideditor

2008-08-29 Thread Steven Lobbezoo
Hi, I want to add a row to the gridedito from code, so i do this : PUBLIC SUB Button5_Click() ' on ajoute la selection du listbox gridd.GridEditor_Create() ' met les données dans le grid gridd.putData(gridd.Table.Row, 2, "Tout-Bien") gridd.putData(gridd.Table.Row, 4, "Request") gridd.