hi,
i have done some work on images and generated many effects.
But the problem is after modifying the image in picture box i am unable to save it.
Plz, tell me how i can get rid of this?
thanx
Printable View
hi,
i have done some work on images and generated many effects.
But the problem is after modifying the image in picture box i am unable to save it.
Plz, tell me how i can get rid of this?
thanx
You must save your Picturebox's image property, and not its picture property. If that doesn't work, use the refresh property of the picturebox before you save it.VB Code:
SavePicture Picture1.Image
Thanx
But this also doesn't work.
And when i refresh picture box it restores to the original image.
Plz try to solve it.
bye
You'll have to set the Autoredraw property to true and then use the savepicture function.
Offcourse you have to replace the Picture1 by the name of the picturebox you are using.Code:Picture1.AutoRedraw = True
SavePicture Picture1.Image
-Shell-
hey,
its working!
thanx
i have done it.
thank u very much.
bye.