You may need to set minimum Height/Width:
VB Code:
Option Explicit Dim iMinWidth As Integer Dim iMinHeight As Integer Private Sub MDIForm_Load() iMinWidth = 12000 iMinHeight = 8000 End Sub Private Sub MDIForm_Resize() If Me.WindowState = vbNormal Then If Me.Width < iMinWidth Then Me.Width = iMinWidth If Me.Height < iMinHeight Then Me.Height = iMinHeight End If End Sub




Reply With Quote