Boron
26th August 2009, 17:05
Hello,
when a special button is clicked my application starts a new process with a different application QProcess::startDetached( "OtherApp.exe" );
Now I want the new application to signal the first application to quit.
First I thought about using D-Bus for Inter-Process Communication (IPC), but as I am developing for Windows D-Bus cannot be used (Unix only).
QCOP is for Qt Embedded Linux only.
This leaves TCP/IP and Shared Memory as remainders of the proposed ways to implement IPC.
But how can I use them (or only one of them) to signal from one application to another?
Are there other ways to achieve this?
when a special button is clicked my application starts a new process with a different application QProcess::startDetached( "OtherApp.exe" );
Now I want the new application to signal the first application to quit.
First I thought about using D-Bus for Inter-Process Communication (IPC), but as I am developing for Windows D-Bus cannot be used (Unix only).
QCOP is for Qt Embedded Linux only.
This leaves TCP/IP and Shared Memory as remainders of the proposed ways to implement IPC.
But how can I use them (or only one of them) to signal from one application to another?
Are there other ways to achieve this?