I have a report I export as a rtf file. Is there any way I can automatically have the report open in Word AFTER I export it?
Thanks.
I have a report I export as a rtf file. Is there any way I can automatically have the report open in Word AFTER I export it?
Thanks.

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
I'm not sure how you're exporting your report, but if you're using the OutputTo method, check out the AutoStart argument. The below line of code exports my report named "Rpt" to a Rich Text Format document named "MyReport.rtf" at the root of my D partition. The True value as the 5th argument is what tells the OS to fire up the application associated with .rtf files. Best of luck!
<pre>DoCmd.OutputTo acReport, "rpt", "RichTextFormat(*.rtf)", "D:MyReport.rtf", True, "", 0</pre>
<font face="Comic Sans MS"><font color=blue>~Shane</font color=blue></font face=comic>