I'm attempting to write a C# program for class that when the program runs will also call on an embedded picture file (an overview) named "Search_Screen.jpg".
I want the .jpg file to open up with the default picture viewer. I've tried starting it as a new process with the line of code
{ Process.Start(Search_Screen.jpg);
But this is not working for me, am a not relating this to the fact that this is an embedded file?
Any assistance is appreciated.
Loading
FroglegPosted Sep 5, 2012, 2:06 PM
example
Process.Start(@"C:\Windows\system32\mspaint.exe",@"C:\whatever\Search_Screen.jpg");