Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable resizing a Form in VB6 while keeping the "Minimize" control

Tags:

vb6

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.

like image 669
weeraa Avatar asked Apr 29 '12 07:04

weeraa


1 Answers

Can't you just set the "MinButton" property to true on fixed-single border form. I can in my version of VB6.

enter image description here

like image 126
Ryan Woodard Avatar answered Sep 21 '22 23:09

Ryan Woodard