Hello, newbie here
I have done a simple application in Qt Designer and called it.... "HelloWorld.ui"
To generate the py code I typed, in the Python shell, the following
"App\python.exe App\Lib\site-packages\PyQt4\uic\pyuic.py HelloWorld.ui" > HelloWorld.py
But I got this error
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
"App\python.exe App\Lib\site-packages\PyQt4\uic\pyuic.py HelloWorld.ui" > HelloWorld.py
NameError: name 'HelloWorld' is not defined
Can anyone tell me what I'm doing wrong?
Thanks