I had just posted something similiar, so heres what i did.
Take all portions of both reports and stick them in the detail section. Place a Page break inbetween them, and it will print the report on 2 pages. If there is a header or footer section, it will try repeating them on the section page, so set thier heights to zero then turn them off.
If this wont resolve the issue, the you should be able to do it in VBA. Heres the code I used, it behind a cmd button named Command19. It turns all prompts off, then it prints the report, turn the warnings back on, sets focus back to the data entry txt area, then disables the cmd button.
Private Sub Command19_Click()
DoCmd.SetWarnings False
DoCmd.OpenReport "rptFinal", acViewNormal, "", "", acNormal
DoCmd.SetWarnings True
Me.txtContractNum.SetFocus
Me.Command19.Enabled = False
Hope one of these helps.
End Sub