Disable form change in VB6 while saving the minimize control

Ive developed the VB6 application. Now I want to disable form change. I know that there is a Border style property that changes to fixed single , can do my job. But I want to collapse the button into my form. The Minimize button is only in "Sizable" mode. I changed the other MaxButton property to false . When I run my program, I can still resize the form.

Please tell me how to disable the form change.

+6
source share
2 answers

Can't you just set the "MinButton" property to true in a fixed one-way form. I can in my version of VB6.

enter image description here

+11
source

if you are lucky with your problem please update

0
source

Source: https://habr.com/ru/post/914446/


All Articles