Hello,
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.
The .exe is located in the "wwwroot". Do you have any idea how to launch an .exe from my application?
I don't want the app to run in the web browser. I only want to launch an application from a click of a browser button. For example, we launch a Notepad.
Thanks.
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.
Code:
ShellExecute(0 , 'OPEN' ,PChar(ExtractFilePath(Application.ExeName)+ '.\Application.exe'), Nil, Nil, SW_SHOW);
I don't want the app to run in the web browser. I only want to launch an application from a click of a browser button. For example, we launch a Notepad.
Thanks.