Reputation: 71
I’ve developed a VB6 application. Now I want to disabled resizing the form. I know there is a property Border style
, which changes to fixed single
, can do my work. But I want minimize button to my form. Minimize button is only in “Sizable” mode. I changed another property MaxButton
to false
. When I run my program, still I can re-size the form.
Please tell me how to disable resizing the Form.
Upvotes: 6
Views: 6640
Reputation: 511
Can't you just set the "MinButton" property to true on fixed-single border form. I can in my version of VB6.
Upvotes: 11