Fuga's solution should work. If you want to close the Parent form, try inserting a docmd.close statement after the child form has been opened and the parent id value inserted.
Docmd.openform "childform",,,,acformadd
forms!childform.parentID = me.parentID
Docmd.close
I'm not sure if this...