Lockhead
Lockhead

Reputation: 2451

Asynchronous application execution in Qt

I want to execute a file through Qt. QProcess is working like a charm, however, it blocks my application and waits for the one I just opened to exit, and I need it[my main application] to exit as soon as the other application is opened. How can I do this?

Upvotes: 0

Views: 308

Answers (1)

Ralf
Ralf

Reputation: 9573

Have you tried QProcess::startDetached ?

Upvotes: 4

Related Questions