I've seen some references to this issue, but unfortunately I still cannot get the application I want to run to launch. I set the folder and file permissions in Windows 10 file manager to "Full Control" for all users and processes.
IAWriter is the application that will not launch, and no error are logged:
I am able to successfully launch the Windows calculator with no issues:
Any thoughts?
Thanks in advance!
IAWriter is the application that will not launch, and no error are logged:
Run iAWriter:
Sub TVBut_MouseClicked (EventData As MouseEvent)
Dim shl As Shell
shl.Initialize("shl", "iAWriter.exe", Null)
shl.WorkingDirectory = "C:\Program Files\iA Writer"
shl.Run(-1)
'StartMessageLoop 'need to call this as this is a console app.
End Sub
I am able to successfully launch the Windows calculator with no issues:
Run calc.exe:
shl.Initialize("shl", "calc.exe", Null)
shl.WorkingDirectory = "C:\Windows\System32"
Any thoughts?
Thanks in advance!