Open image with MS Paint

  • Thread starter Thread starter BC
  • Start date Start date
B

BC

Hi all,

How can I open an image with MS Paint in a c# windows application?


Cheers,

Benny
 
The following code should open mspaint with an image.

using System.Diagnostics;

....

Process.Start("mspaint", @"""C:\Image.jpg""");
 

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