hello,
How can prevent the user from resizing the form's width under
8400 pixels?
and for that matter, the height too...
thanks
:wave:
Printable View
hello,
How can prevent the user from resizing the form's width under
8400 pixels?
and for that matter, the height too...
thanks
:wave:
Form1.BorderStyle = vbFixedSingle
no.. I want the form to be sizable, just not under 8400...
From AllAPI.net -
"With this program you can set the maximum and minimum size of a form."
(attatched)
VB Code:
sub form_resize() if me.width<8400 then me.width=8400 end if end sub