DoCmd.OpenReport

  • Thread starter Thread starter Kurt Schroeder
  • Start date Start date
K

Kurt Schroeder

I have a form that needs to call a report to print when
the record is changed or added. How can i do this?
any help?
 
Try the Form_AfterUpdate Event.

For a new Record, I *think* the AfterUpdate Event also works. If it
doesn't, use the Form_AfterInsert Event.
 
Back
Top