H HerbertWehner New member Local time Today, 12:56 Joined Oct 27, 2017 Messages 2 Oct 27, 2017 #1 Hi Guys, i need to convert a text from RTF2 to Plaintext. I already have most of the code. Due to an AddIn Word stops my code with an Alert. How can i suppress such Messages in Word coming from Access. I attached an example. John Attachments ol_749158.accdb ol_749158.accdb 544 KB · Views: 78
Hi Guys, i need to convert a text from RTF2 to Plaintext. I already have most of the code. Due to an AddIn Word stops my code with an Alert. How can i suppress such Messages in Word coming from Access. I attached an example. John
S static Registered User. Local time Today, 20:56 Joined Nov 2, 2015 Messages 823 Oct 27, 2017 #2 http://www.developerfusion.com/code/1130/turn-off-warning-messages-in-ms-office-applications/
H HerbertWehner New member Local time Today, 12:56 Joined Oct 27, 2017 Messages 2 Oct 28, 2017 #3 Thanks for the Information. I have already tried to implement this. With CreateObject("Word.Application") .Visible = True .DisplayAlerts=False 'wdAlertsNone ..... .Quit End With It Dows not work. The AddIn-Message still appears.
Thanks for the Information. I have already tried to implement this. With CreateObject("Word.Application") .Visible = True .DisplayAlerts=False 'wdAlertsNone ..... .Quit End With It Dows not work. The AddIn-Message still appears.