message box

  • Thread starter Thread starter Daniel Jones
  • Start date Start date
D

Daniel Jones

I have an add in that runs a procedure and displays a message box upon
completion. I do not have access to the code for this add-in. I have
a macro that actually triggers the procedure of the add-in and loops a
certain number of times. however, the message box is preventing the
continuation of the macro, in that i need to manually hit <enter> for
the macro to proceed. Is there a way around this?

Thanks,

D
 
D I have bad news for you. Unless my training is failingme, the whole point
of a message box is to intentionally interrupt the code (almost like a break)
until the user acknowledges the message.

I have tried to recreate your situation and use various techniques to trap
the open messagebox event, the only problem is you have to do this in the
procedure which calls the messagebox (which is pointless of course, because
if you can see the code, just comment out the msgbox statement).

I know this isn't the answer you were hoping for but at least you won't
spend countless hours going round in circles.
 
D I have bad news for you. Unless my training is failingme, the whole point
of a message box is to intentionally interrupt the code (almost like a break)
until the user acknowledges the message.

I have tried to recreate your situation and use various techniques to trap
the open messagebox event, the only problem is you have to do this in the
procedure which calls the messagebox (which is pointless of course, because
if you can see the code, just comment out the msgbox statement).

I know this isn't the answer you were hoping for but at least you won't
spend countless hours going round in circles.

Forgive me for my late reply, this information was very helpful. thank
you very much!
 
Back
Top