What's some good code that makes a form resizable in width but not in height ???
I don't like code like:
Cause that hasn't got a neet result. In this example the form can't be bigger or smaller than 3255. While you resize it looks like you can...Code:If Form1.Height > 3255 Then Form1.Height = 3255 If Form1.Height < 3255 Then Form1.Height = 3255




Reply With Quote