Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
pyqt4
- Page 1
Re: PyQt
Programming
Software Development
14 Years Ago
by vegaseat
You could take a look at: [url]http://www.riverbankcomputing.com/software/pyqt/download[/url] Also check if the Eric IDE is available in your repository. It is written in Python and PyQT and should install PyQT for you. [url]http://eric-ide.python-projects.org/[/url]
PyQt
Programming
Software Development
14 Years Ago
by Boubakr
Hi... I want to start with PyQt and I don't from where should I beggin !! I'm using Fedora Linux 14 !
PyQt: Need help installing
Programming
Software Development
15 Years Ago
by lmnopt
…script from a tutorial [URL="http://zetcode.com/tutorials/
pyqt4
/firstprograms/"]Here[/URL] [*] Receive an error message (from… IDLE) for ALL programs which have this line (from
PyQt4
import QtGui) or any other like it (ie including …py", line 6, in <module> from
PyQt4
import QtGui ImportError: DLL load failed: %1 is not …
Re: PyQt: Need help installing
Programming
Software Development
15 Years Ago
by bumsfeld
… other uses # for easier syntax import this way from
PyQt4
.QtCore import * from
PyQt4
.QtGui import * class MyForm(QWidget): def __init__(self…
Re: PyQt: Need help installing
Programming
Software Development
15 Years Ago
by lmnopt
Ok, after spending a while trying to reinstall python 2.6 and pyqt I've hit another problem. I uninstalled both and reinstalled 2.6 64 bit and pyqt, still didn't work uninstalled both, again when I attempt to reinstall python 2.6.5 I get an error, about half way through the installation I get [CODE]The cabinet file 'python' required for this …
Re: PyQt: Need help installing
Programming
Software Development
15 Years Ago
by vegaseat
I would agree with SgtMe. Even though you are running Windows7-64bit, you are better of to install the 32bit versions of Python and PyQt at this time.
Re: PyQt: Need help installing
Programming
Software Development
15 Years Ago
by vegaseat
I just did Bumsfeld's Python26 and PyQt 32bit installation on my Dell Window7-64bit machine and it worked perfectly well.
Re: PyQt: Need help installing
Programming
Software Development
15 Years Ago
by lmnopt
thank you hazar, that worked perfectly. An explanation as to why would be nice..... I can't see why downloading from another computer should work, but regardless of that I finally have python installed on my computer! Now to try installing pyqt again
Re: pyqt execution problem...
Programming
Software Development
15 Years Ago
by python.noob
Thanks wooee for your reply... I've successfully installed PyQt for python3 and it's running perfectly.. I've posted this problem in PyQt forum and see the reply here.. It must be helpful to many python3 beginners like me.. Please see this link.. [URL="http://old.nabble.com/problem-in-making-pyqt-up-and-running...-ts26456683.html"]http…
PyQt Put QLineEdit Text Into Variable
Programming
Software Development
14 Years Ago
by Syphilis
What's Up? I can't seem to post this in the PyQt section (No post new thread button) Anyway I've started using PyQT to design a UI for my python script, I've googled around for ages and racked by brain, But to no avail, Nothing I've found is specificy tailored to PY-Qt There's three jobs I need to do between the PyQt User interface and the …
PyQT Designer error
Programming
Software Development
13 Years Ago
by Srin
I wanted to install a GUI toolkit for python and pyqt looked good but when I install the complete binary on the pyqt site and run designer, I get this error when I try to go to the code [IMG]http://i167.photobucket.com/albums/u154/Final_04/pyqtdesignererror.png[/IMG] Anyone know how to fix it? And if not, can I manually code with the pyqt …
Re: pyqt execution problem...
Programming
Software Development
15 Years Ago
by woooee
… in python3 sys.path[/QUOTE]So you are obviously using
PyQT4
built for Python 2.6. The error message confirms it…
Re: PyQT Designer error
Programming
Software Development
13 Years Ago
by nabla2
… system path variable this entry C:\Python27\Lib\site-packages\
PyQt4
; Save your GUI from Qt Designer to .ui file, and… to [URL="http://www.riverbankcomputing.co.uk/static/Docs/
PyQt4
/html/designer.html"]Reference Guide[/URL] how to using…
pyqt execution problem...
Programming
Software Development
15 Years Ago
by python.noob
…with a sample program.. i[CODE]mport sys from
PyQt4
import QtGui app=QtGui.QApplication(sys.argv) widget=QtGui…showed the error like [CODE]ImportError: No module named
PyQt4
[/CODE] So i searched the sys.path for 2.…like.. [CODE]ImportError: /usr/lib/python2.6/dist-packages/
PyQt4
/QtGui.so: undefined symbol: PyString_FromString[/CODE] I got the…
PyQt designer - calling widget form from main window
Programming
Software Development
12 Years Ago
by Dan08
Hi, I just installed PyQt Designer to start creating UI's with python, I've used WxPython and TKinter before, but never really done anything with PyQt. So for some of you this might be a very simple question that I can't seem to find with google. I really like how it all works and I can create a UI very quickly, a bit like Visual Basic, but now I …
Re: PyQt save an qgraphicsview
Programming
Software Development
14 Years Ago
by woooee
… docs at [url]http://www.riverbankcomputing.co.uk/static/Docs/
PyQt4
/html/qgraphicsview.html[/url] [QUOTE] QGraphicsView.render (self, QPainter, QRectF…
Pyqt and gif
Programming
Software Development
17 Years Ago
by neverlander
I am trying to display a gif file on pyqt.It shows but doesnt animate.It is static.How can make it animate? This is the code i used: [CODE]pic=QtGui.QPixmap("./IRREGULAR/"+ui.lineEdit.text()+".gif") ui.label_9.setPixmap(pic)[/CODE]
Re: Pyqt and gif
Programming
Software Development
17 Years Ago
by ZZucker
I don't think pyqt can handle animated gifs. You could use wxPython's wx.animate.GIFAnimationCtrl widget.
Re: Pyqt and gif
Programming
Software Development
17 Years Ago
by Ene Uran
There is actually a python code snippet on animated gifs and wxpython: [url]http://www.daniweb.com/code/snippet435.html[/url] PyQT and QT use some rather complex legal stuff on licensing, so I don't use it!
Re: Pyqt and gif
Programming
Software Development
15 Years Ago
by vegaseat
… start and stop animation # tested with
PyQt4
.4 and Python 2.5 # also tested with
PyQt4
.5 and Python 3.0 # vegaseat… lazy to keep track of QtCore or QtGui from
PyQt4
.QtCore import * from
PyQt4
.QtGui import * class MoviePlayer(QWidget): def __init__(self…
[pyqt]QTabbar beginner question..help plz..
Programming
Software Development
15 Years Ago
by python.noob
Hello all, One simple question.. We can set Tab bar for the tab widget in pyqt... I want to place a push button on tab1.. In what way i can do that??? Should i have to add this in the first tab in tab bar or in the tab widget directly.. If i'm not clear, in QTabWidget we will add the components in this sequence CreateWidget-->Add it to …
PyQt window auto resize
Programming
Software Development
15 Years Ago
by DimaYasny
Hi guys, We're writing a GUI based on PyQt, and we're running into an issue when using different resolutions. Problem is, we can't find how to get the GUI elements to automatically resize when the window is resized, or when the GUI is running on a larger resolution than the one the GUI was originally developed in I'm using Qt-designer to …
PyQt save an qgraphicsview
Programming
Software Development
14 Years Ago
by pdini
Hi all, I developed a GUI application using PyQt which comport a QGraphicsView. In this QGraphicsView I have a QGraphicsScene with a lot of items (more than 10'000): polygons, rectangles, texts, etc. How can I save it as an image like it appears on the screen (.png for example)? I couldn't find any example of this. Should I use QImage or …
PyQt + external runtime... need help
Programming
Software Development
11 Years Ago
by Tcll
[Click Here](hey there everyone... :) I need some help with an external runtime interface with PyQt... here's my current code: import API API.init() #show the Qt window _init_(depth) #(this module): print text to both the console and the Qt window (checking for updates to API) API.run(files) #take over the Qt window with API... how can I make …
PyQt QPainter indent guides
Programming
Software Development
9 Years Ago
by Tcll
so what I'm doing is building my own python IDE using PyQt. nothing can do what I need it to without a loss of something else, let alone properly. so I'm using a QPainter and getting the best results yet. however I'm having a problem trying to build indent guides like NotePad++ or VS2010 among other IDEs. what I need to do is build an array …
Re: PyQt
Programming
Software Development
16 Years Ago
by woooee
There is not enough code here or enough of the error message to help you. If you are not using a class,[CODE][/CODE] the "self." will yield errors. This is an example using QVBoxLayout that hopefully will help.[CODE]#**************************************************************************** #** $Id: lineedits.py,v 1.1 2002/06/19 07:…
Re: IDE for PyQt..
Programming
Software Development
15 Years Ago
by MikaelHalen
PyQT can be a hassle to setup in Eclipse but when it is set up it works pretty nicely! There is [URL="http://popdevelop.com/2010/04/setting-up-ide-and-creating-a-cross-platform-qt-python-gui-application/"]a guide at popdevelop[/URL] that shows you how to setup Eclipse in Windows to work with PyQT, with code completion and all.
Re: error in configuring PyQt
Programming
Software Development
14 Years Ago
by e-papa
PyQt-win-gpl-4.8.3, i already have it and i have extracted it.
Re: PyQt
Programming
Software Development
14 Years Ago
by Boubakr
Thank's
Re: PyQt Quit push button
Programming
Software Development
16 Years Ago
by Ene Uran
…operating system you have. I have been trying to install
PyQt4
on my Windows Vista machine and it seems to fail… notorious: "ImportError: No module named
PyQt4
" even though there is a
PyQT4
folder and a bin subfolder with all… I downloaded: [url]http://www.riverbankcomputing.co.uk/static/Downloads/
PyQt4
/PyQt-Py2.5-gpl-4.4.2-1.exe[/url…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC