Click here to Skip to main content
15,891,976 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Good Day! all, Please I want to save an image form a picture box to a specific folder without invoking the save dialogue box, just to click the save button on my application and the file save directly to the specified folder, how can I achieve this?

Regards
Posted

Try:
myPictureBox.Image.Save("c:\myBitmap.bmp")
 
Share this answer
 
PictureBox.Image.Save("c:\myBitmap.bmp")
PictureBox.Image.Save("c:\myjpg.jpg")
PictureBox.Image.Save("c:\mygif.gif")
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900