DoCmd.OpenReport

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?
 
V

Van T. Dinh

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.
 
Top