Here's the code for the custom toolbar Rick describes --
Function RptClose()
DoCmd.Close
End Function
Function RptPrint()
On Error Resume Next
DoCmd.RunCommand acCmdPrint
End Function
Put these functions in a standard module. You need a Print button and a
Close button on the custom toolbar. Put =RptPrint() in the action property
of the Print button and = RptClose() in the action property of the Close
button.
--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
Over 1100 users have come to me from the newsgroups requesting help
(E-Mail Removed)
"dalaw" <(E-Mail Removed)> wrote in message
news:F8BF324A-E7E3-4297-91F9-(E-Mail Removed)...
>I have a form that views a report. I want to add a toolbar to the report
>so
> the user can print the report out once the report come sup on screen. I
> figured out I was in the run-time version so right click properties don't
> work. How do you do this?
>
> Specifically the print button, maybe print preview