Reputation: 45
I have a windows form wherein i am displaying all the tables,figures etc. But, the problem is that even though i set the auto scroll property to true, the form hence created doesn't have a scroll bar.
Upvotes: 0
Views: 46
Reputation: 9862
Write in your form_load
and make sure you have not changed it any where.
private void yourForm_Load(object sender, EventArgs e)
{
this.AutoScroll = true;
}
Verify it by re sizing your form else scroll bar will not be visible.
Upvotes: 1