vote up 1 vote down star

I've got a chunk of C# code that is supposed to set VerticalScroll.Value within a class that inherits from UserControl. It gets called when any child object of the class changes sizes. The class has its AutoScroll property set to true.

    public void ScrollTo(int top)
    {
        if (top >= this.VerticalScroll.Minimum && top <= this.VerticalScroll.Maximum)
        {
            this.VerticalScroll.Value = top;
        }
    }

The problem is, when tracing through the code, sometimes this.VerticalScroll.Value gets set, sometimes it keeps the value that it had before this method was called.

Is this a bug in VS, or are there known conditions under which the value will ignore attempts to set it?

Thanks, Rob

flag

2 Answers

vote up 2 vote down check

I was running into the same problem, and I found a solution on the MSDN webpage (won't let me post links, 'cause I'm a new user).

The suggested solution was to assign to .Value twice, and it worked for me:

int newVerticalScrollValue = pDashboard.VerticalScroll.Value - pDashboard.VerticalScroll.SmallChange;

pDashboard.VerticalScroll.Value = newVerticalScrollValue;

pDashboard.VerticalScroll.Value = newVerticalScrollValue;

link|flag
@Aowyn, thanks a tonne, I just had a chance to test this and it works great. – Robert Gowland Jun 11 at 14:17
vote up 2 vote down

I was having the same problem and came upon the solution in some dev forum. After setting the VerticalScroll.Value, you have to call PerformLayout() to make the scrolling control update. So do this:

scrollingcontrol.VerticalScroll.Value = top;
scrollingcontrol.PerformLayout();

This makes more sense than setting .Value twice, though it seems to have the same effect.

link|flag
1  
Aw c'mon, no love for my answer, even though it is "better" than the accepted answer? – skypecakes Jun 24 at 20:06
I'd have to test it to up-vote it. Since the project was completed in May, you'll have to wait until I get a free moment. – Robert Gowland Jul 9 at 16:00
skypecakes' answer is correct. I had the exact same problem today and calling PerformLayout() solved it. Thanks. – Kyle Gagnet Aug 24 at 16:45

Your Answer

Get an OpenID
or

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