suppress Active X alert

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a macro that runs a Active X add-in. The macro always pauses to ask
if it is okay to use the Active X add-in. How do I get this to stop?
 
Have you tried

Application.DisplayAlerts = False
your code
Application.DisplayAlerts = True
 
I'm afraid I don't have any other suggestions, other than making sure theres
not a command in the VBA code asking if it is okay to use the add-in, such as

Result = Msgbox("Okay to run add-in?", vbyesno)
 

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