This example works: (Here my function has no input parameters)
QtCore.QObject.connect(ComboJobType1_1, QtCore.SIGNAL(_fromUtf8("currentIndexChanged(QString)")) ,self.InputChanged())
But, It is necessary for me to send a parameter so I try this: (After updating my function to expect one parameter):
QtCore.QObject.connect(ComboJobType1_1, QtCore.SIGNAL(_fromUtf8("currentIndexChanged(QString)")) ,self.InputChanged("ComboJobType1_1"))
Please note that the first example is working, the only problem (I guess) is sending a parameter to my function (I must know the name of the comboBox when I'm in the function).
Please advice... Thank you! Wish you a great day, Dolphin