Application not running
Unsolved
Qt for Python
-
Hi,
I tried to run my application few minutes ago and I get this message Process finished with exit code -1073740791 (0xC0000409) without the GUI showing. I have not experienced this kind of disaster before. Any help please, thanks in advance. I'm using pycharm IDE. -
@LT-K101
When you run from PyCharm via "debug" does it (the debugger) stop when this happens, and show you a stack trace?If you cannot discover from debugger what the issue is, put in a few
print
statements to try to see where it's getting to. For example, does it even get as far as either the first statement in or theapplication._exec()
(or similar) you have in your main program?