It could be you need to select the form before the MozeSize
Try this tested code.
Option Compare Database
Option Explicit
Private Sub Form_Load()
' make sure the correct object is selected
DoCmd.SelectObject acForm, Me.Name
DoCmd.MoveSize 1, 10, 100, 1000
End Sub
***...