Adding Minimize and Maximize Button to Project
I have a simple project with a Form window.
All it has is a red Close button in the top right. Is it possible to add any more buttons. I have MinButton and Maxbutton set to true, but makes no difference
Also, I tried it on a netbook with a smaller screen, and ending up with part of the Form filling the whole screen with no scroll bars for horizontal or vertical
Thanks for your help
Mike
UK
Re: Adding Minimize and Maximize Button to Project
Change the Form's BorderStyle property to Sizeable.
Re: Adding Minimize and Maximize Button to Project
Quote:
Originally Posted by
DigiRev
Change the Form's BorderStyle property to Sizeable.
Bang on the money !
Thanks
Although I tried it in a low screen resolution where the Form was bigger than the screen, but there were no scroll bars for horizontal or vertical movement
Any ideas ?
Re: Adding Minimize and Maximize Button to Project
Quote:
Originally Posted by
leachim
Bang on the money !
Thanks
Although I tried it in a low screen resolution where the Form was bigger than the screen, but there were no scroll bars for horizontal or vertical movement
Any ideas ?
Scrollbars are used to scroll controls ( like a TextBox ) that is on your form. It doesn't scroll the form itself.
Re: Adding Minimize and Maximize Button to Project
You can check out MartinLiss 's signature for a scrollable form example :)