If you are trying to do a move next on the recordset for the main form from a subform then you need to include the main form in your code. Here is the standard code generated by the Control Wizard for a Move Next command button:
DoCmd.GoToRecord , , acNext
Here is what you need to move the main form recordset:
DoCmd.GoToRecord , Me.Parent.Name, acNext
Good Luck!