I'm programming with BeauGauge ActiveX Control(www.beaugauge.com). I changed the range from 0~100 to 0~42 by calling SetRange, but after I set different range and giving the pointer different value with the function SetValue it's NOT pointing at value I gave him, both pointers (For example I set the value to 37 and it's pointing to 16)

enter image description here

link|improve this question

17% accept rate
Seems it still expects a SetValue in the range 0...100. Can't you just set your value to 37*100/yourmaxrange, i.e. 37*100/42? – Jonas Heidelberg Feb 22 at 11:37
feedback

1 Answer

The range setting of the pointer is in ControlLayer2, while settings for text on Gauge is in ControlLayer4. Maybe you just called SetRange{“ ControlLayer4”…}, You need to call: SetRange{“ControlLayer2”…} SetRange{“ControlLayer4”…}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.