Does anyone know how to not let the user make the form smaller than a certain size?

I don't really want to use:
VB Code:
  1. If Me.Width <= 5115 Then
  2.         Me.Width = 5115
  3.     End If
since it flickers when the size is smaller than the one specified.

Any solutions and/or other ways of doing this?