Hey all,<br><br>Here is the code:<br><br>import sys<br>from Qt import *<br><br>a = QApplication([])<br><br># Our function to call when the button is clicked<br>def sayHello():<br>&nbsp;&nbsp;&nbsp; print &quot;Hello, World!&quot;<br><br>
# Instantiate the button<br>hellobutton = QPushButton(&quot;Say 'Hello world!'&quot;,None)<br><br># And connect the action &quot;sayHello&quot; to the event &quot;button has been clicked&quot;<br>a.connect(hellobutton, SIGNAL(&quot;clicked()&quot;), sayHello)
<br><br># The rest is known already...<br>a.set_main_widget(hellobutton)<br>hellobutton.show()<br>a.exec_loop()<br><br><br>I get the following message: AttributeError: set_main_widget<br><br>When I comment out that line, I get the same message about exec_loop. What's up?
<br><br>Thanks,<br><br>Doug Woos<br>