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] 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"

[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"