I am starting to migrate my VCL application to Intraweb. I'm not used to working with it. In my VCL code, I am running an external application with "ShellExecute". In Intraweb, I don't know how to do this.
ShellExecute(0 , 'OPEN' ,PChar(ExtractFilePath(Application.ExeName)+ '.\Application.exe'), Nil, Nil, SW_SHOW);
The .exe is located in the "wwwroot". Do you have any idea how to launch an .exe from my application?
Thanks.