Quote Originally Posted by Hell-Lord
O btw it should be
vb Code:
  1. Or
instead of
vb Code:
  1. And
in the code
Would it not be better to use two seperate if statements like this:

vb Code:
  1. Private Sub Form_Resize()
  2. If Me.Width < 11640 Then Me.Width = 11640
  3. If Me.Height < 6105 Then Me.Height = 6105
  4. End Sub

This way it means that the width can be reset while leaving the height alone and vice versa.