<div dir="ltr"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div><br><br></div><div>Both did run, but if I use the import and set e.g. "self.ui.setWindowTitle('Do not read my title')" the app crashes with "AttributeError: 'Ui_MainWindow' object has no attribute 'setWindowTitle'" I don't understand the reason and in addition I have no idea how to solve this. Further ith hangs on <br></div><div> widgetList = self.ui.findChildren (QPushButton)<br>AttributeError: 'Ui_MainWindow' object has no attribute 'findChildren'<br></div><div>The idea behind was that I compile the ui before I run pyinstaller to avoid problems at runtime.<br></div></div><br></blockquote><div><br></div><div>You need to call self.setWindowTitle or self.findChildren. Those are methods on QMainWindow.</div><div><br></div><div><br></div></div></div>