Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
885
Set Needle Values Programatically
posted

I'm perplexed.

This code works

        Dim RadialGauge1 As RadialGauge = ugaugeNextRun.Gauges(0)
        Dim RadialScale1 As RadialGaugeScale = RadialGauge1.Scales(0)
        Dim RadialGaugeNeedle1 As RadialGaugeNeedle = RadialScale1.Markers(0)

This code fails

Dim RadialGaugeNeedle3 As RadialGaugeNeedle = ugaugeNextRun.Gauges(0).Scales(0).Markers(0)


What am I missing here? (I know this is probably going to be a facepalm moment but ...)

Parents Reply Children