PDA

View Full Version : Execute 3rd party app out of my QT-app



ape
5th March 2008, 10:20
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

jpn
5th March 2008, 10:29
See QProcess (cmd.exe /c script.bat).

ape
5th March 2008, 10:39
Hi Jpn,

thank you very much for the quick help.