I need from my installer to run an exe. I use Exec or ExecWait and is doing what I need, but it shows the window of the application that I run, so in this case a ugly command prompt window 🙂
Can I somehow do the following:
- run myapp.exe with it's windows hidden
- while this one runs, show a msg like "Doing smth, pls wait ..."
?
So, something like:
Would this be possible?
ShowMsg "Doing smth, please wait ..." TRUE ;puts a msg on the screen
ExecWait myapp.exe ;runs myapp.exe and waits to finish
ShowMsg "" FALSE ;removes the msg from the screen
Thx,
Viv