Thanks alot it works , Here is working example taken from other website .<br><br>import sys<br>from PyQt4 import QtCore, QtGui<br><br>class MainWindow(QtGui.QMainWindow):<br>    def __init__(self):<br>        QtGui.QMainWindow.__init__(self)<br>
        #QtCore.QTimer.singleShot(4000, self.start)<br><br>    def start(self):<br>        print 'start'<br>        QtCore.QTimer.singleShot(4000, self.start)<br><br>if __name__ == "__main__":<br><br>    app = QtGui.QApplication(sys.argv)<br>
    mw = MainWindow()<br>    mw.show()<br>    mw.start()<br>    sys.exit(app.exec_())<br><br><div class="gmail_quote">On Wed, Aug 17, 2011 at 12:23 PM, Phil Thompson <span dir="ltr"><<a href="mailto:phil@riverbankcomputing.com">phil@riverbankcomputing.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div></div><div class="h5">On Wed, 17 Aug 2011 03:07:03 +0500, uahmed <<a href="mailto:gleam.uahmed@gmail.com">gleam.uahmed@gmail.com</a>> wrote:<br>

> Hi<br>
><br>
> In tkinter i use after method to recall the function after particular<br>
> interval time and that function do the the changes in GUI . What i<br>
should<br>
> use to do changes in Pyqt GUI ?<br>
<br>
</div></div>QTimer.singleShot()<br>
<font color="#888888"><br>
Phil<br>
</font></blockquote></div><br>