Re: [Gambas-user] Image to Picture

2010-12-27 Thread Fabien Bodard
2010/12/27 Shane : > On 27/12/10 22:01, Fabien Bodard wrote: >> 2010/12/27 Shane: >>> On 27/12/10 21:55, Shane wrote: On 27/12/10 21:48, Fabien Bodard wrote: > 2010/12/27 Shane: >> On 27/12/10 21:36, Fabien Bodard wrote: >>> try to add >>> >>> >>> Picturebox.Picture.Fil

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Shane
On 27/12/10 22:01, Fabien Bodard wrote: > 2010/12/27 Shane: >> On 27/12/10 21:55, Shane wrote: >>> On 27/12/10 21:48, Fabien Bodard wrote: 2010/12/27 Shane: > On 27/12/10 21:36, Fabien Bodard wrote: >> try to add >> >> >> Picturebox.Picture.Fill(gb.Transparent) >> >

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Fabien Bodard
2010/12/27 Shane : > On 27/12/10 21:55, Shane wrote: >> On 27/12/10 21:48, Fabien Bodard wrote: >>> 2010/12/27 Shane: On 27/12/10 21:36, Fabien Bodard wrote: > try to add > > > Picturebox.Picture.Fill(gb.Transparent) > > after setting the new picture > Tried Th

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Shane
On 27/12/10 21:55, Shane wrote: > On 27/12/10 21:48, Fabien Bodard wrote: >> 2010/12/27 Shane: >>> On 27/12/10 21:36, Fabien Bodard wrote: try to add Picturebox.Picture.Fill(gb.Transparent) after setting the new picture >>> Tried This >>> >>> PictureBox1.Picture =

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Shane
On 27/12/10 21:48, Fabien Bodard wrote: > 2010/12/27 Shane: >> On 27/12/10 21:36, Fabien Bodard wrote: >>> try to add >>> >>> >>> Picturebox.Picture.Fill(gb.Transparent) >>> >>> after setting the new picture >>> >> Tried This >> >> PictureBox1.Picture = New Picture(PictureBox1.w,PictureBox1.h) >> >

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Fabien Bodard
2010/12/27 Shane : > On 27/12/10 21:36, Fabien Bodard wrote: >> try to add >> >> >> Picturebox.Picture.Fill(gb.Transparent) >> >> after setting the new picture >> > Tried This > > PictureBox1.Picture = New Picture(PictureBox1.w,PictureBox1.h) > > Draw.Begin(PictureBox1.Picture) > Draw.Image(myimage

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Shane
On 27/12/10 21:36, Fabien Bodard wrote: > try to add > > > Picturebox.Picture.Fill(gb.Transparent) > > after setting the new picture > Tried This PictureBox1.Picture = New Picture(PictureBox1.w,PictureBox1.h) Draw.Begin(PictureBox1.Picture) Draw.Image(myimage,(PictureBox1.w-myimage.w)/2,(PictureB

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Fabien Bodard
try to add Picturebox.Picture.Fill(gb.Transparent) after setting the new picture -- Fabien Bodard -- Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standard

Re: [Gambas-user] Image to Picture

2010-12-27 Thread Shane
On 27/12/10 21:25, Shane wrote: > using Gambas 3 I'm trying to copy a image to a picturebox at a certain > location using this code > Woops Forgot I also do PictureBox1.Picture = New Picture(PictureBox1.w,PictureBox1.h) > Draw.Begin(PictureBox1.Picture) > > Draw.Image(myimage,(PictureBox1.w-myimage

[Gambas-user] Image to Picture

2010-12-27 Thread Shane
using Gambas 3 I'm trying to copy a image to a picturebox at a certain location using this code Draw.Begin(PictureBox1.Picture) Draw.Image(myimage,(PictureBox1.w-myimage.w)/2,(PictureBox1.h-myimage.w)/2) Draw.End But All I get Is Stray Data From The Screen what Am i Doing Wrong? ---