No, there is not "Actually Printed" event.
If the user prints directly (without preview) then the Activate event does
not fire. If they do preview, you may be able to create custom menus and
toolbars that give you a click event to work with.
More significantly, though, there are *many* things that can go wrong with a
print process, e.g. out of paper, network problem, job reset by another
user, printer turned off, ... Perhaps you could just use the Close event of
the report to ask the user whether it actually printed.
A more basic question might be why you need to know this. If it is important
to know which records were printed and when, then it is probably worth
creating a table to record the primary key of the records that printed as
part of each run. Two tables:
tblPrintRun table:
PrintRunID AutoNum primary key
PrintDate Date/Time (when the print run started)
UserID who printed this
ReportID which report was printed
tblPrintRunDetail table:
PrintRunID foreign key to tblPrintRun.PrintRunID.
RecordID foreign key value to whichever primary key is appropriate
to the report.
You assign the values to these table before running the report, and the
RecordSource of the report uses the tblPrintRunDetail to limit it to the
desired records. This approach gives you a complete history of who printed
what when, and allows to user to reprint the run if something went wrong.