Save image in Windows Mobile 5.0 using C#
        Posted  
        
            by Vijay V
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Vijay V
        
        
        
        Published on 2010-03-22T11:45:27Z
        Indexed on 
            2010/03/22
            11:51 UTC
        
        
        Read the original article
        Hit count: 308
        
c#
|windows-mobile
Hi
I am saving image in windows mobile application using C#.My code is
    SaveFileDialog dialog = new SaveFileDialog();
    if (dialog.ShowDialog() == DialogResult.OK)
    {
        aspectRatioPictureBox1.Photo.Save(dialog.FileName, System.Drawing.Imaging.ImageFormat.Bmp);
    }
In the above code i am able to save only in folders of MyDocument But i am not able to browse to save in other folders..
Please let know the code to save image through browsing the location
Thanks in Advance
© Stack Overflow or respective owner