how to make the windows app in vs 2008 unresizable?because when you launch the application and point and drag to its corners, the window grows.
Share
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.
Change the
FormBorderStyleto a fixed one, depends what look you want. Here’s a full list of options, you probably wantFixed3DorFixedSingleYou also probably want to set
MaximizeBoxto false.Both of these can be found in the designer as options on the form, or set in code, whichever you prefer.