bypass warning if text converter trusted?

D

Doug B

In Word 2002, SP3, I substitute a FileSave macro that forces a "save as" using the Word 6.0/95 text converter, for compatibility with a newspaper layout application. Is there a switch or other way to avoid the security warning on every save about whether the text converter is from a trusted source
Thanks,
Doug B
 
D

Dave Lett

Hi Doug,

You can try:

Application.DisplayAlerts = False
''' your routine
Application.DisplayAlerts = True

HTH,
Dave

Doug B said:
In Word 2002, SP3, I substitute a FileSave macro that forces a "save as"
using the Word 6.0/95 text converter, for compatibility with a newspaper
layout application. Is there a switch or other way to avoid the security
warning on every save about whether the text converter is from a trusted
source?
 
Top