I\'d like the system to be as automated for my users as possible. Right now, I have code that runs when the user clicks a button. The code takes data with the intention of a
Try setting the DisplayAlerts property in Word (if that's where the alert is coming from):
Dim tmp as Long
tmp = wdDoc.Application.DisplayAlerts
wdDoc.Application.DisplayAlerts = wdAlertsNone
'do the action which causes the prompt
wdDoc.Application.DisplayAlerts = tmp