views:

379

answers:

2

Surely this is possible? I have been hunting through pyqt tutorials and documentation but cannt find the answer to it. Probably I just need to phrase my search query differently.

[Edit]

Thanks PEZ for the answer - more details including use of the .pyw extension in Python Programming on Win32 chapter 20

+9  A: 

I think you should be able to run your app with pythonw.exe.

PEZ
doh! Thanks - I never even looked at the other exes in the folder...
danio
+8  A: 

An easy way to do this is to give your script a .pyw extension instead of the usual .py.

This has the same effect as PEZ's answer (runs the script using pythonw.exe).

Kiv
Ah, you put this in while I was typing. What's the etiquette here, do I delete my answer?
Kiv
Neat! I didn't know about the .pyw thingy. +1.
PEZ
I think you should leave your answer here - I just wanted to put the link in as it goes into good detail.
danio