Re: [PyQt] tkinter after method in pyqt

2011-08-17 Thread uahmed
Thanks alot it works , Here is working example taken from other website . import sys from PyQt4 import QtCore, QtGui class MainWindow(QtGui.QMainWindow): def __init__(self): QtGui.QMainWindow.__init__(self) #QtCore.QTimer.singleShot(4000, self.start) def start(self):

Re: [PyQt] tkinter after method in pyqt

2011-08-17 Thread Phil Thompson
On Wed, 17 Aug 2011 03:07:03 +0500, uahmed wrote: > Hi > > In tkinter i use after method to recall the function after particular > interval time and that function do the the changes in GUI . What i should > use to do changes in Pyqt GUI ? QTimer.singleShot() Phil ___

[PyQt] tkinter after method in pyqt

2011-08-16 Thread uahmed
Hi In tkinter i use after method to recall the function after particular interval time and that function do the the changes in GUI . What i should use to do changes in Pyqt GUI ? Thank you Ahmed ___ PyQt mailing listPyQt@riverbankcomputing.com http