Does anyone know if there is another option for stopping the new record from showing once the current record is dirtied on a cont. form? It's actually quite annoying!

One of my applications gets around this by setting allowadditions to FALSE. I display the new record with a button. On the button event I have:
Code:
me.allowadditions=true
docmd.gotorecord "ACNEW args"
me.allowadditions=false
this has worked for sometime, but the problem with it is the screen/form flickering. The form goes through a few phases by changing the addition rule back and forth like that.



Haven't found too many articles on the net about this either. thanks!