Here is the setup :
- a delphi COM component we developed makes calls to some dll we don't have hands on (some are old fortran ones, some are C)
- a .NET service is calling the COM component
Sometimes, depending on the parameters we send to the COM component, the old dlls we don't have hands on are displaying an error message box - they are buggy.
And of course, this is a server application, nobody works in front of it, and the whole service gets stuck, waiting for someone to click those Dialog boxes before it can resume working.
So my question is : Is there a way to setup the com component to prevent it from showing dialog boxes ?
Thank you!