message box

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
 
B

BSc Chem Eng Rick

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

Daniel Jones

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!
 

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

Similar Threads


Top