Suppress MessageBox from a referenced assembly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:22:25Z http://stackoverflow.com/feeds/question/554373 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/554373/suppress-messagebox-from-a-referenced-assembly 1 Suppress MessageBox from a referenced assembly Jessy Houle 2009-02-16T19:56:24Z 2009-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#554386 0 Answer by JaredPar for Suppress MessageBox from a referenced assembly JaredPar 2009-02-16T20:01:39Z 2009-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#554389 2 Answer by Andrew Grant for Suppress MessageBox from a referenced assembly Andrew Grant 2009-02-16T20:02:21Z 2009-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#554404 1 Answer by Drew Noakes for Suppress MessageBox from a referenced assembly Drew Noakes 2009-02-16T20:09:37Z 2009-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#554450 2 Answer by Ryan Emerle for Suppress MessageBox from a referenced assembly Ryan Emerle 2009-02-16T20:31:04Z 2009-02-16T20:31:04Z <p>This <a href="http://www.codeproject.com/KB/dialog/WindowInterceptor.aspx?fid=1070466&amp;df=90&amp;mpp=25&amp;noise=3&amp;sort=Position&amp;view=Quick&amp;select=2624936" rel="nofollow">article</a> may be able to help</p>