I am using VB.net and trying to startup MSPaint with a file. I've been using below code unsuccessfully. Any ideas out there? This is on a Windows 7 Pro machine using the personal webserver.
Thanks in advance.
Dim myProcess As New Process()
myProcess.StartInfo.FileName = "mspaint.exe"
myProcess.StartInfo.Arguments = "C:\attachments\2014.jpg"
myProcess.Start()
Go to the complete details ...