3

I have a window form which has many controls and I need to set horizontal scroll bar for width of the form. Moreover, I am displaying it as a child form to mdi parent and when I maximize the form, display is not proper. How can I set and bind horizontal scroll bar to form width so that it is scrollable.

Any type of help will be appreciated.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
KamalSubodh
  • 51
  • 2
  • 10

1 Answers1

1

Set AutoScroll property of your form to true:

Form1.AutoScroll = true;
Ashkan Mobayen Khiabani
  • 33,575
  • 33
  • 102
  • 171