I am unable to increase height of a form in Visual Studio 2008. It goes up to 812 pixels but not beyond that!
If I set it to 813 it goes back to 812.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot make the form larger than your screen. 812 sounds about right for a something x 800 screen resolution + borders, a pretty common resolution on LCD panels with Aero fat borders enabled. This is Winforms trying to make you do the right thing by not creating a window that’s hostile to the user. Who has very few options to move the window so that the bottom part is visible. Dragging the caption won’t work, she can’t drag it beyond the top desktop edge. Only the system menu can make it visible, very unlikely that your user will stumble on that solution.
Make it usable by setting the form’s AutoScroll property to True.