Error module: kernelbase.dll. Application crash

I have an application done. Net framework 3.5 (C # .Net). I installed the application on Windows 7 . But when opening some forms, the application causes the following error enter image description here

If anyone knows the solution, share it. This error occurs only in Windows 7.

+6
source share
3 answers

Just add, because I have the same problem:

Sometimes this is due to stack overflow due to recursion.

+1
source

I had the same problem and found a solution.

Check out the event viewer and find out which application crashed. This is likely kernelbase.dll. This is not an office problem, because KERNELBASE.dll is a system file. If the system file fails, you need to fix the Windows 7 system files.

Go here and follow all the instructions: http://support.microsoft.com/kb/929833

As a result of this, many other problems with my system were resolved:

  • MSN messenger no longer loads
  • All Office 2010 utilities crash when I tried to click the INSERT tab.
  • Windows Explorer crashes when searching for files or documents in large folders

Hope this helps.

Gilles

0
source

The problem for me was that the Windows Service installation project or part of the solution became corrupt; it did not detect the dependency correctly and therefore caused an IO problem when trying to start the Windows service.

So I basically deleted the old installation project and recreated the new one, and then when I added the primary output, it still didn't update the dependencies correctly. If I added one more primary output, the dependencies would populate, and then if I tried to delete one of the two two primary output records, VS2010 would crash, so I looked at the installation project files, then added three, and then deleted two records? !?!?!?! et voila ... no longer crashing.

0
source

Source: https://habr.com/ru/post/914192/


All Articles