Not Scrollable Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I make a NOT scrollable form?

I made a form with tabcontrol, and when I use the program in Portrait screen
mode, I can cover the tab pages with mainMenu,but when I use the program in
landscape screen mode, I can't cover the tab pages with mainMenu, because the
form change to scrollable(the vertical scrollbar appear) and I can scroll to
the bottom of form.
Well, I would like to disappear the tabpages(label).

Portrait(480*640)
this.tabControl1.Size = new System.Drawing.Size(468, 640);
IT WORKS GOOD!


Landscape(640*480)
this.tabControl1.Size = new System.Drawing.Size( 628, 480);
 
Back
Top