Always state what version of Access you are using.
Report Mode?
Do you mean this is Access 2007, and the report is open in "Report *View*"?
Using the "Enter" key to do anything in Report View would have to over-ride the Default functionality that will move you through the Reports controls.
What is commonly done in Report View is that a "Print" button is added to the Report.
Then set the "Display When" property of this button to: "Screen Only" so it only appears in Report View (Not in Print Preview or in the actual Hardcopy Printout.)
The code on the Click Event of this button will simply be:
DoCmd.PrintOut acPrintAll
Docmd.Close
Here is a sample.
;-)
JeffCoachman