|
No, there isnt. Qt draws its own controls, rather than using native windows ones.
That also means that at some point in the code the value for the slider has to be actively set, typically in the constructor of the Form.
This should be done by calling the setSliderPosition(int) method of the slider.
So what you will want to do is find the " setSliderPosition" export in QtGui.dll, breakpoint it, and somehow figure out which slider is the one you want.
|