Re: PyQt ProgressBar

2007-10-16 Thread David Boddie
On Mon Oct 15 14:24:09 CEST 2007, luca72 wrote: > Hello i have made anly one test like this: > > from time import sleep > barra = QtGui.QProgressBar() > barra.setMinimum(0) > barra.setMaximum(10) > for a in range(10): >sleep(1) >barra.setValue(a) >app.processEvents()

Re: PyQt ProgressBar

2007-10-16 Thread Alexandre Badez
On Oct 16, 8:03 am, luca72 <[EMAIL PROTECTED]> wrote: > No one can help pls > > Regards > > Luca I've written a little app for testing this: import sys import time from PyQt4 import QtGui app = QtGui.QApplication(sys.argv) barra = QtGui.QProgressBar() barra.show() barra.setMinimum(0) barra.setM

Re: PyQt ProgressBar

2007-10-15 Thread luca72
No one can help pls Regards Luca -- http://mail.python.org/mailman/listinfo/python-list