Hello,
is there anything equivalent to the windows PostMessage() across application boundaries?
Qt Code:
  1. HWND hWnd = ::FindWindow(NULL, "MyOtherApplication");
  2. ::PostMessage(hWnd, IntegerMessageID,
  3. (WPARAM)param1,
  4. (LPARAM)param2);
To copy to clipboard, switch view to plain text mode 

I've got Qt GUI apps talking to a COM server that sits on a big heap of code. Parts of that code should be able to tell the GUI that it needs updating. Before I started using Qt I was using the PostMessage(). My GUI could catch it and ask the COM server for fresh info.

any (simple) ideas?

thanks
K