Here is the problem
- I have a .NET WinForm application that uses a third-party DLL (which calls COM object calls.)
- When the application launches third-party dll functions, LogWindow opens (which I'm fine with)
- When I call Application.Exit () on some machines, I keep getting the ".NET BroadcastWindow Error" and open a dialog box. But my application closes normally, and I see that this error occurs after closing my window.
- The error message also reports that an error occurred while accessing the memory location at location “xx”.
Here are some things I've tried
- Put Application.Exit () in the catch try block - I am not getting an exception. It seems like an error occurred after this step
- Get all the active forms in the application and dispose of them explicitly.
None of this works.
Is this something related to LogWindow trying to contact my form after closing it?
Does anyone know of any software fixes for this?
Thank!
Links found after several searches. They don't seem to help yet.
source
share