How to save a graphic object to bitmap with vb.net code?

  • Thread starter Thread starter news.microsoft.com
  • Start date Start date
The best way to save a bitmap in the .NET Compact Framework, v1, is by
using a PictureBox control.

' Assumes myBmp is a Bitmap object.

MyPictureBox.Image = myBmp

MyPictureBox.Image.Save("myBmp.bmp", ImageFormat.Bmp)

The .NET Compact Framework version 2.0 supports the Save method on an
Image. To get the Visual Studio Beta 2, which contains NETCF v2, visit:

http://lab.msdn.microsoft.com/vs2005/

- Bruce Hamilton
..NET Compact Framework User Education
Microsoft
(e-mail address removed)
 
I think it was a typo as further in his post Bruce definitely refers to v2
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top