python def question
def spinBox_Changed(self, a0, b0=785, c0=300):
self.LCDNumber10.display((b0-c0)/a0)
this works great if I manually have b0 and c0 values there but I need to get these variables from a slider value and spinbox valve respectively.
The slider is self.slider5_2.value
tried lots of combos like .value display Value etc.
The spinbox is self.spinBox24.value
Any help or advice would be appreciated
Thanks
Gary