Enlarge the screen

  • Thread starter Thread starter Agnes
  • Start date Start date
A

Agnes

MY application is designed based on 800 X600 screen size.
However, some client use 1024 X768 , When they run the application, the form
become smaller.
I don't want to re-wrtie all the forms
How can I enlarge the form to fit the 1024 X768 ??
thanks a lot
 
MY application is designed based on 800 X600 screen size.
However, some client use 1024 X768 , When they run the application, the form
become smaller.
I don't want to re-wrtie all the forms
How can I enlarge the form to fit the 1024 X768 ??
thanks a lot

Set the initial state of the forms to be maximized might work.
 
Set the initial state of the forms to be maximized might work.

In addition, check out the dock and anchor properties of your
controls. Using these can help fill in the "white space" caused by the
extra pixels the larger resolution screens have at the side/bottom.

Also here's a code project article that will save/restore the user's
window settings automatically (including the restore down size). That
way if a user resizes the form to the way he/she wants it it will stay
that way on subsequent openings.

http://www.codeproject.com/csharp/placement.asp

Thanks,

Seth Rowe

Thanks,

Seth Rowe
 
Back
Top