B BC Mar 30, 2005 #1 Hi all, How can I open an image with MS Paint in a c# windows application? Cheers, Benny
T Tim Wilson Mar 30, 2005 #2 The following code should open mspaint with an image. using System.Diagnostics; .... Process.Start("mspaint", @"""C:\Image.jpg""");
The following code should open mspaint with an image. using System.Diagnostics; .... Process.Start("mspaint", @"""C:\Image.jpg""");