Greg,
Do the following:
insert a command button on the form (in design view)
right click on the buton
select properties
choose the event tab
place your cursor in the on click box
click the button that has ... (visual basic will open)
paste the following text in the visual basic window
Private Sub print_Click()
On Error GoTo Err_print_Click
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.PrintOut acSelection
Exit_print_Click:
Exit Sub
Err_print_Click:
MsgBox Err.Description
Resume Exit_print_Click
End Sub
This should give you what you want. If you have any problems, let me know and I will try to help you.