when i capture the screen and put the image in a picture box, i cannot save it! but when i load a pic from a file into a pic box, i can save it! whats the bloody problem?
Printable View
when i capture the screen and put the image in a picture box, i cannot save it! but when i load a pic from a file into a pic box, i can save it! whats the bloody problem?
Got any sample code?
I got some 4 you, but I must know what you want exactly, so I can give you what you need.;)
You can either save the Image (not the picture) or set the Picture to the Image before saving the Picture.
eg
SavePicture Picture1.Image, "C:\temp\test.bmp"
or
Set Picture1.Picture = Picture1.Image
SavePicture Picture1.Picture, "C:\temp\test.bmp"