RTF attachments

  • Thread starter Thread starter JF Bouthillier
  • Start date Start date
J

JF Bouthillier

Hi all,

I was wondering if someone knows how to put the option
to "track changes" on an Word attachment (email) created
from an Access report. In other words, I want to send
an "rtf" attachment but I also want to track its changes.

Also, is it possible to keep the drop-downs that you have
in MS Access when you send the report in "rft" format?

Thank you very much,
JF
 
Use automation to open the rtf file in Word and then

With ActiveDocument
.TrackRevisions = True
.PrintRevisions = True
.ShowRevisions = True
End With

Geoff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top