Macro to automatically print current record on update to a report

  • Thread starter Thread starter Denise
  • Start date Start date
D

Denise

I need to print out a report (letter) when a record (applicant) is logged in
using a form. Ideally, the report prints when the data entry person tabs
through all fields or clicks on "new record." How do I program the macro to
do this?
Thanks.
 
Denise,

You would use an OpenReport action in your macro. I would recommend a
command button on your form, and therefore the macro is assigned on the
Click event of the button.
 
I've seen this where the user doesn't do anything but enter and tab through
data entry form and when at the end, the report automatically prints the
current record data to the printer. That's what I'm trying to do.
Thanks for your help.
 
Steve,
What print command do I enter in the macro to make it print automatically?
Thanks.
 
Denise,

As I mentioned before, OpenReport is the applicable action for your macro.
Setting the View argument of the OpenReport action to Print (that's the
default anyway) will result in it being printed directly.
 
Back
Top