Hello all,
After googling around for a few hours i can't find any example for passing arguments to an user-defined method in pyqt.. The only link i found related to this is http://www.commandprompt.com/community/pyqt/x1408 . In this example we have to make it to emit the signal and pass the argument..
Can u please tell me how can i pass the argument in the below connect
QtCore.QObject.connect(self.dialogBoxButton,QtCore.Signal('clicked()'),self.executeFunction)
In the above example if i want to pass a parameter to executeFunction how can i achieve that??