-
BitBlt
I'm using BitBlt to copy an area of the screen to a picture box, and want to be able to save this. The problem I'm getting is that SavePicture saves whatever was in the picture box before it was blitted, and if you minimize the form, when you bring it back the blitted information is gone. Does anyone know how to fix this?
-
SavePicture Picture1.Image, "filepath"
-
this does the same as SavePicture Picture1.Picture, "path" - which is save the image that was there before the picture object was blitted.
-
try to set autoredraw = true
-
Try a MSGbox
I don't know if what your doing can include one, but sometimes a Msgbox does strange things when Bitblt is used.