On Sep 24, 4:45 am, Xavier Lapointe wrote:
> Hello,
>
> Let's suppose you're on Windows.
>
> If pyuic4 can't be found, you can specified the direct path:
> C:\Python26\pyuic4.bat -o Drive:\your\Path\ui_myGUI.py -x
> Drive:\your\Path\myGUI.ui
> You might need to replace the Python26 with your own v
Hi Xavier
Yes. You are right, I am in WinXP - developing a client-server database for
a customer. I am pretty sure that this type of problem won't be happening on
Linux.
Anyway, I did both way about the path. It didn't work and keep giving that
same error message.
Maybe it seems to be a bug .. s
Hello,
Let's suppose you're on Windows.
If pyuic4 can't be found, you can specified the direct path:
C:\Python26\pyuic4.bat -o Drive:\your\Path\ui_myGUI.py -x
Drive:\your\Path\myGUI.ui
You might need to replace the Python26 with your own version if it
differs...
Cheers
--
http://mail.pytho
Hello Xavier.. thanks! [?]
Just tried..
pyuic4 -o C:\dev\prgr\src\ui_myGUI.py -x C:\dev\prgr\src\myGUI.ui
The system cannot find the path specified.
pyuic4 -o ui_myGUI.py -x myGUI.ui
The system cannot find the path specified.
Very strange. [?]
Yep.. the ..!\Py25\Lib\site-packages\PyQt4 is incl
Have you tried something like so?
pyuic4 -o C:\dev\prgr\src\ui_myGUI.py -x C:\dev\prgr\src\myGUI.ui
(Sorry if double post occured - just changed my Mailing list account ..)
--
http://mail.python.org/mailman/listinfo/python-list
Have you tried something like so?
pyuic4 -o App.py -x App.ui
--
http://mail.python.org/mailman/listinfo/python-list
Hello Everybody
I have used Qt Designer to generate a basic GUI. The file saved from Qt
Designer I named it myGUI.ui .
Now, I have to generate from myGUI.ui the ui_myGUI.py. To get this done, we
must run pyuic4, directly or via mkpuqt.py or Make PyQt. I tried to get it
done, so went into the
On 2005-01-08, Michael <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am experiencing something very weird with PyQt. I have created several
> windows based on QWidget using Designer. I can easily hide and show
> these with the hide and show methods. However I have just created a new
> window with Desig
Hi,
I am experiencing something very weird with PyQt. I have created several
windows based on QWidget using Designer. I can easily hide and show
these with the hide and show methods. However I have just created a new
window with Designer and the show method works in my main script but not
insid