I am able to start all other apps with this code except this one. I have double check the spelling look for spaces and still getting an error ' Open Failed ! ' .
Can anyone think what could be the probem ?
Can anyone think what could be the probem ?
HTML Code:
If System.IO.File.Exists("C:\Program Files\Viscom Store Pdf To Tiff\ImageViewerPdfToTif.exe") Then
Dim ProcessProperties As New ProcessStartInfo
ProcessProperties.FileName = ("C:\Program Files\Viscom Store Pdf To Tiff\ImageViewerPdfToTif.exe")
ProcessProperties.CreateNoWindow = True
ProcessProperties.WindowStyle = ProcessWindowStyle.Normal
Dim myProcess As Process = Process.Start(ProcessProperties)
End if