I want To Open Image in Picasa Photo Viewer.
Just Like Opens Image In Windows Photo Viewer by doing Following
Process.Start(@"C:\MyPicture.jpg");Thnx in Advance
Process.Start(@"C:\MyPicture.jpg");Thnx in Advance
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
pradip vaghaniPosted Jul 30, 2014, 9:16 AM
string file = @"C:\Sunset.Jpg";
ProcessStartInfo pi = new ProcessStartInfo(file);
pi.Arguments = Path.GetFileName(file);
pi.UseShellExecute = true;
pi.WorkingDirectory = Path.GetDirectoryName(file);
pi.FileName = @"C:\Program Files\Google\Picasa3\PicasaPhotoViewer.exe";
pi.Verb = "OPEN";
Process.Start(pi);
I hope This is Work For you.