Report Open/Activate

J

JethroUK©

If i email a report (as .rtf) from a form e.g.

DoCmd.SendObject acSendReport, "STATS", acFormatRTF, "[email protected]", ,
, "Please Find Stats"

....the report doesn't fire either the Report Open/Activate event

Am i missing something?

....juat a thought - would it make more sense if sent the report [the code]
from within the report (instead of a form)
 
A

Allen Browne

The report's Open event does fire when you SendObject.

It's Activate event does not, since that event only fires when the report
preview window is opened on screen.
 
Top