PDA

View Full Version : QPrintDialog (pyqt4)



jaybstory
7th February 2010, 04:35
Hello,

I am trying to print my gui, however I am having trouble. I have a button with a signal as clicked and slot as printd(which is my function that I am calling QPrintDialog. In printd, I have this code:





def printd(self):
pd = QtGui.QPrintDialog(self)
pd.exec_()



Which successfully opens the popup window for printing items. However, when i click print, nothing ends up printing. I'm not sure what I am doing wrong here. Any suggestions? Thank you in advance.

NOTE: this is for help in PyQt4.