Suppress MessageBox from a referenced assembly - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T11:22:25Zhttp://stackoverflow.com/feeds/question/554373http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/554373/suppress-messagebox-from-a-referenced-assembly1Suppress MessageBox from a referenced assemblyJessy Houle2009-02-16T19:56:24Z2009-04-25T09:56:29Z
<p>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)?</p>
<p>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.</p>
<p>I thought there was a way to reference an assembly in Non-Interactive mode or something along these lines.</p>
<p>Thank you for your help.</p>
<p>-Jessy Houle </p>
http://stackoverflow.com/questions/554373/suppress-messagebox-from-a-referenced-assembly/554386#5543860Answer by JaredPar for Suppress MessageBox from a referenced assemblyJaredPar2009-02-16T20:01:39Z2009-02-16T20:01:39Z<p>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. </p>
<p>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. <a href="http://www.codeproject.com/KB/dialog/AutoCloseMessageBox.aspx" rel="nofollow">http://www.codeproject.com/KB/dialog/AutoCloseMessageBox.aspx</a></p>
http://stackoverflow.com/questions/554373/suppress-messagebox-from-a-referenced-assembly/554389#5543892Answer by Andrew Grant for Suppress MessageBox from a referenced assemblyAndrew Grant2009-02-16T20:02:21Z2009-02-16T20:02:21Z<p>What you are asking is basically "How can I modify the behavior of code in a third-party assembly".</p>
<p>Short of disassembling/reassembling, the answer is "You can't".</p>
<p>There are some icky options;</p>
<p>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</p>
<p>You could have a 2nd thread that waits till the message box appears and then automatically closes it.</p>
http://stackoverflow.com/questions/554373/suppress-messagebox-from-a-referenced-assembly/554404#5544041Answer by Drew Noakes for Suppress MessageBox from a referenced assemblyDrew Noakes2009-02-16T20:09:37Z2009-02-16T20:09:37Z<blockquote>
<p>I thought there was a way to reference an assembly in Non-Interactive mode or something along these lines.</p>
</blockquote>
<p>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.</p>
<p>So, either disassemble-reassemble or send windows messages directly to the box to automatically close it.</p>
http://stackoverflow.com/questions/554373/suppress-messagebox-from-a-referenced-assembly/554450#5544502Answer by Ryan Emerle for Suppress MessageBox from a referenced assemblyRyan Emerle2009-02-16T20:31:04Z2009-02-16T20:31:04Z<p>This <a href="http://www.codeproject.com/KB/dialog/WindowInterceptor.aspx?fid=1070466&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=2624936" rel="nofollow">article</a> may be able to help</p>