Try this in the Form_Resize event:
Private Sub Form_Resize()
Const w As Long = 28440, h As Long = 11835
With Me
' Set the inside width to exactly 28440 twips
If Not .InsideWidth = w Then .InsideWidth = w
' Set the inside height to exactly 11835 twips
If Not .Detail.Height...