Re: System.Drawing.Bitmap
But then how would I use the functions in system.drawing.bitmap? Like getpixel or maketransparent..
Re: System.Drawing.Bitmap
Ok thats what I figured.. So then I'd have to do this..
VB Code:
Dim B as Bitmap
B=B.FromFile("C:\a.bmp")
B.MakeTransparent(RGB(0,0,0))
Picturebox1.Image=B
And everytime I changed something in B, I'd have to use Picturebox1.Image=B.. No biggie.. Is there anyway to bind the picturebox1.image to B, so if B changes, picturebox1.image changes too? Maybe Set PictureBox1.Image = B?
Re: System.Drawing.Bitmap
Actually, I'd only have to use P.Refresh every time. That means that P.Image IS "set" to B. Whatever changes on B changes on P, but P needs to be refreshed. Is there some kind of autoredraw on pictureboxes? Or images or something?