Hi
Here is my code
SaveFileDialog dialog = new SaveFileDialog();
if (dialog.ShowDialog() == DialogResult.OK)
{
aspectRatioPictureBox1.Photo.Save(dialog.FileName,
System.Drawing.Imaging.ImageFormat.Bmp);
}
dialog.Dispose();
I want to save the file in mypictures folder defaultly with the name given by user