I'm using the subprocess function in order to open a Qt windows and I would like display a dialogbox (saying wait a minute for instance) that appear only the time for MyWindow is taking to be completely open. I use that line to open my Qt window:
subprocess.Popen([sys.executable, "MyWindow.py"])
But I have no idea of how I can get a signal that MyWindow is open and so I could closed the qdialogue box in the first program (from which the subprocess is called).
Any idea?