Execute 3rd party app out of my QT-app
Hi,
at the moment i am creating a UI based on QT which creates a *.bat file
......which should be executed at the end of my application.
So during the first section the user is creating the *.bat (based on inputs using the UI) and in the final section this file should be launched.
I figured out howto write to files, but i am not sure howto execut this file now.
Could you provide me with a keyword for my example search in the docs ?
Best regards
ape
Re: Execute 3rd party app out of my QT-app
See QProcess (cmd.exe /c script.bat).
Re: Execute 3rd party app out of my QT-app
Hi Jpn,
thank you very much for the quick help.