Hi,

How can I block a form from resizing for example smaller then 1000 x 1000.

Now i'm using:

Code:
Private Sub Form_Resize()
 If Me.Width < 1000 then
  Me.Width = 1000
 End If
End Sub
But then when you resize it smaller then 1000 the form start flickering and i dont want the form flickering.

Is there another way to block resizing smaller then?

Thank you

Greetz, Tekson