Report question.

  • Thread starter Thread starter Guest
  • Start date Start date
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 . . .
 
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
 
Back
Top