vote up 1 vote down star

How do I suppress a MessageBox from showing that comes from a reference to an assembly that I do not own (nor have the code for)?

For example, my application (MyApplication.exe) is referencing an assembly coded by someone else (SomeoneElsesAssembly.dll). Inside of this assembly I'm calling a static method, which does what it's supposes to, but also is firing a MessageBox that I want to suppress.

I thought there was a way to reference an assembly in Non-Interactive mode or something along these lines.

Thank you for your help.

-Jessy Houle

flag

4 Answers

vote up 2 vote down check

This article may be able to help

link|flag
vote up 1 vote down

I thought there was a way to reference an assembly in Non-Interactive mode or something along these lines.

I believe it's possible to run a process in a non-interactive mode (such as Windows Services, for example), but assemblies are loaded into the process and are subject to the same interaction levels as other assemblies in the process, afaik.

So, either disassemble-reassemble or send windows messages directly to the box to automatically close it.

link|flag
vote up 3 vote down

What you are asking is basically "How can I modify the behavior of code in a third-party assembly".

Short of disassembling/reassembling, the answer is "You can't".

There are some icky options;

With managed code you always have the source in some form. If the function is somewhat self-contained you could use Reflector to copy it into your own code

You could have a 2nd thread that waits till the message box appears and then automatically closes it.

link|flag
vote up 0 vote down

Basically you're asking if you can reference an assembly which calls MessageBox() and have the code not actually show a message box. The answer is unfortunately no.

You're best bet is to use screen scrapping to close the message box once it shows up. This post has some example code of how to close an InProc message box. http://www.codeproject.com/KB/dialog/AutoCloseMessageBox.aspx

link|flag
And someone marked me down because ... – JaredPar Feb 16 at 20:23
I put it back to 0. Sorry if that was me. I was going to make it as the answer, but marked a different one, as they had the very same code sample (in a link), but was in C#, instead of C++. Thank you again. – Jessy Houle Feb 16 at 22:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.