I'm sure this is a clumsy fix, but it worked:
Code:
Private Sub btnAdd_Click()
Me.AllowAdditions = True
DoCmd.GoToRecord , , acNewRec
Me.RecipeName = " "
Me.AllowAdditions = False
Dim RecNum As Integer
RecNum = Me.CurrentRecord
DoCmd.OpenForm "frmIngredients"
DoCmd.GoToRecord , , acNewRec
' Link to tbl1Recipe
Forms!frmIngredients!txtRecipeID = RecNum
' Set to Dummy Value
Forms!frmIngredients!cmbIngredientName = 100
DoCmd.Close
Me.Refresh
Forms!frmRecipes.SetFocus
Forms!frmRecipes.AllowEdits = True
End Sub