Re: [Gambas-user] GRIDVIEW: SCROLL & DOUBLE CLICK

2010-02-02 Thread Ricardo Díaz Martín
Thanks, I'll try to do this. Regards, Ricardo Díaz 2010/2/3 Benoît Minisini > > Benoit, > > > > Something new about this? How can I help you? > > > > Regards, > > > > Yes, sorry for the delay! > > You must use the Activate event which is raised when the user actually > double- > clicks on a row

Re: [Gambas-user] How to create a new drawing area

2010-02-02 Thread Fiddler63
Fabien Bodard-4 wrote: > > 2010/2/2 Fiddler63 : >> >> I have a button which, when clicked created a new drawing area. >> The following code does that fine (and I can move it with the mouse). >> >> PRIVATE LCD_01 AS NEW Picture >> PRIVATE LCD_02 AS NEW Picture >> >> PUBLIC SUB NewLCD_Btn_Click()

Re: [Gambas-user] GRIDVIEW: SCROLL & DOUBLE CLICK

2010-02-02 Thread Benoît Minisini
> Benoit, > > Something new about this? How can I help you? > > Regards, > Yes, sorry for the delay! You must use the Activate event which is raised when the user actually double- clicks on a row, or activate a keyboard shortcut (but not in GridView I think). The DblClick is a low level eve

Re: [Gambas-user] Popup menus not popping

2010-02-02 Thread Benoît Minisini
> > Of the three you listed, I use gb.gui only. If I should be using > > something else, I'd be glad to try it. I'm running Ubuntu 8.10 > > ("Intrepid") with Gnome 2.24.1 desktop. Interestingly, when I try to > > build a simple project to show the menu problem, the menus work > > (naturally... X

Re: [Gambas-user] Popup menus not popping

2010-02-02 Thread Benoît Minisini
> Of the three you listed, I use gb.gui only. If I should be using > something else, I'd be glad to try it. I'm running Ubuntu 8.10 > ("Intrepid") with Gnome 2.24.1 desktop. Interestingly, when I try to > build a simple project to show the menu problem, the menus work > (naturally... X-/) but th

Re: [Gambas-user] SVN 2654 Run Error

2010-02-02 Thread Benoît Minisini
> FYI, when running gambas3 SVN 2654 I receive this error: > > [geo...@george ~]$ gambas3 > CRecentFile._new.14: #45: File or directory does not exist > 0: CRecentFile._new.14 > 1: CRecentFile.Load.73 > 2: Project.Main.199 > > ** (:28228): WARNING **: Failed to send buffer > > ** (:28228): WARNI

Re: [Gambas-user] How to create a new drawing area

2010-02-02 Thread Fabien Bodard
2010/2/2 Fiddler63 : > > I have a button which, when clicked created a new drawing area. > The following code does that fine (and I can move it with the mouse). > > PRIVATE LCD_01 AS NEW Picture > PRIVATE LCD_02 AS NEW Picture > > PUBLIC SUB NewLCD_Btn_Click() > >  LCD_01 = Picture.Load("Pix_C.png"

Re: [Gambas-user] GRIDVIEW: SCROLL & DOUBLE CLICK

2010-02-02 Thread Ricardo Díaz Martín
Benoit, Something new about this? How can I help you? Regards, 2009/12/2 Benoît Minisini > > Have you received the example? > > > > I did. > > -- > Benoît Minisini > > > -- > Join us December 9, 2009 for the Red Hat Vi

Re: [Gambas-user] Popup menus not popping

2010-02-02 Thread Charlie Reinl
Am Montag, den 01.02.2010, 17:09 -0600 schrieb Bill Richman: > Of the three you listed, I use gb.gui only. If I should be using > something else, I'd be glad to try it. I'm running Ubuntu 8.10 > ("Intrepid") with Gnome 2.24.1 desktop. Interestingly, when I try to > build a simple project to s

[Gambas-user] How to create a new drawing area

2010-02-02 Thread Fiddler63
I have a button which, when clicked created a new drawing area. The following code does that fine (and I can move it with the mouse). PRIVATE LCD_01 AS NEW Picture PRIVATE LCD_02 AS NEW Picture PUBLIC SUB NewLCD_Btn_Click() LCD_01 = Picture.Load("Pix_C.png") LCD_02 = Picture.Load("Pix_A.png"