In the on click event of your button put the following;
Dim stDocName As String
stDocName = "FRM_Name"
DoCmd.OpenForm stDocName, , , , , , "New" 'The last part of this line is the OpenArgs and could be any descriptor you choose
In the OnLoad event for your form "FRM_Name"...