The standard way is to add a button with code on its click event.
DoCmd.OpenReport "ReportName", acViewPreview
If you want to print a specific record, use:
DoCmd.OpenReport "RptMyReport", acViewPreview, , "MyID=" & KeyFieldName
If the field MyID is a text field, use:
DoCmd.OpenReport...