Can we, by any chance, save the pic stored on the Form.
Actually I wanted some pic files to be created on the hard disk. If I could create them form the one stored on the form or in any control like image or picture then It would help.
Printable View
Can we, by any chance, save the pic stored on the Form.
Actually I wanted some pic files to be created on the hard disk. If I could create them form the one stored on the form or in any control like image or picture then It would help.
May be this helps...
Use the .Image property!
If U use the .Picture property U get unrecognized BMP!
VB Code:
SavePicture Picture1.Image, "C:\Mypic.bmp" 'to any folder U want SavePicture Form1.Image, "C:\Mypic.bmp" 'to any folder U want