Allow User to Resize at Runtime

XL Jedi

Active member
Joined
Apr 2, 2007
Messages
44
Location
Florida
Programming Experience
10+
Another simple requirement with an oddly ellusive solution... :mad:

What userform properties do I need to adjust so I can allow my users to resize the userform at runtime?

Maximizing wasn't a problem and I was able to easily figure out how to anchor the controls such that they resize accordingly. Just can't find the "unlock" for a userform resizeable option.
 
set the form's FormBorderStyle property to allow for the type of resizing that the user is allowed to use

to fine tune things further you can use the form's Resize event to move things around
 
set the form's FormBorderStyle property to allow for the type of resizing that the user is allowed to use

to fine tune things further you can use the form's Resize event to move things around

Hahahaha.... Thanks!

No wonder I coudn't find it, they mingled the resize toggle into a property that appears to address cosmetic border formatting! I guess "Fixed3D" was a clue though huh. :rolleyes:


As for moving stuff around, the Anchor property of each control eliminated any need for me to reposition controls in code.
 
Back
Top