Report question.

G

Guest

I have a button on a form that opens a report and shows only the data for the
record I am currently viewing. When I print this report I would like also
for a word file to be printed.

If that can't happen then I would like to add a second page to my report
that contains the contents of my word file (which I guess I will have to cut
and paste into my report).

Not sure how to do either of these things, or which approach I should even
take . . .
 
F

Fons Ponsioen

Where in the form you currently have the print button,
with this line:
DoCmd.OpenReport stDocName, acNormal
add the following line:
DoCmd.OutputTo acReport, stDocName
Hope this helps.
Fons
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top