You are not logged in.
Pages: 1
Ok, i have now learned python, and i am currently using QT as GUI-thingie...
I have a problem though. When i do something (like entering the lost+found-directory) i want a popup-window saying "You cant do that, stupid!" or something. I'm not sure how to do this. I have the dialog in question, not sure on how to show it correctly..
Offline
Ok, it was:
win2 = funka()
win2.show()
where "funka" is the class for the 2:nd dialog.
Offline
there is a Qmessagebox widget
self.a = QMessageBox(self)
self.a.setText("Text here")
self.a.show()
Offline
Pages: 1