I have written a couple of Windows forms vb.net apps that have recently started crashing intermittently with no error message; the forms just disappear from the screen. It seems to happen only when I haven't been doing anything in the user interface for several seconds, but it's not reproducible. It's not connected to a specific form. When it happens in debug mode, Visual Studio gives the message "The program '[27764] TimeSer.exe' has exited with code 3228369022 (0xc06d007e) 'Module not found'.".
I have set a global unhandled exception handler but it's not trapping the error. The event log says the faulting module name is KERNELBASE.dll and it gives a faulting process ID number that is not the same from one crash to the next, but I don't know how to use this information.
How can I figure out which module is not being found? Thank you.