简体   繁体   English

Windows窗体崩溃没有任何错误,只是事件日志中的错误

[英]Windows form crash without any error, just error in Event log

I have problem with windows forms and multithreading. 我在Windows窗体和多线程方面遇到问题。 It is working for few minutes then crash without any error: 它正在工作几分钟,然后崩溃而没有任何错误:

In event log I can find this: 在事件日志中,我可以找到以下内容:

- <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
- <System>
  <Provider Name="Application Error" /> 
  <EventID Qualifiers="0">1000</EventID> 
  <Level>2</Level> 
  <Task>100</Task> 
  <Keywords>0x80000000000000</Keywords> 
  <TimeCreated SystemTime="2013-12-26T10:12:47.000000000Z" /> 
  <EventRecordID>23018</EventRecordID> 
  <Channel>Application</Channel> 
  <Computer>Mitja-Notebook</Computer> 
  <Security /> 
  </System>
- <EventData>
  <Data>NCrawler.Demo.exe</Data> 
  <Data>3.0.0.0</Data> 
  <Data>52bc0008</Data> 
  <Data>libcef.DLL</Data> 
  <Data>3.1650.1544.0</Data> 
  <Data>52a42238</Data> 
  <Data>c0000005</Data> 
  <Data>0014bd08</Data> 
  <Data>16b0</Data> 
  <Data>01cf0222620ef60a</Data> 
  <Data>D:\PROJEKTI\crawler\WebCrawlerSuite\NCrawler\NCrawler.Demo\bin\Debug\NCrawler.Demo.exe</Data> 
  <Data>D:\PROJEKTI\crawler\WebCrawlerSuite\NCrawler\NCrawler.Demo\bin\Debug\libcef.DLL</Data> 
  <Data>4487f3b0-6e16-11e3-a4f2-824ba6d84ade</Data> 
  </EventData>
  </Event>

and

Wrong program name: NCrawler.Demo.exe, version: 3.0.0.0, timestamp: 0x52bc0008
Wrong module name: libcef.DLL, version: 3.1650.1544.0, timestamp: 0x52a42238
Exception code: 0xc0000005
Wrong path: D:\PROJEKTI\crawler\WebCrawlerSuite\NCrawler\NCrawler.Demo\bin\Debug\NCrawler.Demo.exe
Wrong module path: D:\PROJEKTI\crawler\WebCrawlerSuite\NCrawler\NCrawler.Demo\bin\Debug\libcef.DLL

What Can i do? 我能做什么? How to find the real problem and solve it. 如何找到真正的问题并解决。

http://www.updatexp.com/0xC0000005.html http://www.updatexp.com/0xC0000005.html

the Exception code 0xC0000005 Access Violation 异常代码0xC0000005访问冲突

A quick scan of the online technical forums and blogs reveal folks asking for help with this windows error. 快速浏览在线技术论坛和博客,发现人们正在寻求有关Windows错误的帮助。 Your question may be the same as this typical request: 您的问题可能与以下典型请求相同:

"An application error has occurred and an application error log is being generated. Exception: access violation (0xC0000005), Address" “发生了应用程序错误,并且正在生成应用程序错误日志。异常:访问冲突(0xC0000005),地址”

The error 0xC0000005 is generated by an illegal "memory access violation". 错误0xC0000005由非法的“内存访问冲突”生成。 This can be caused by anything from faulty RAM, an incorrect/corrupt device driver, poorly written/updated software and more commonly under Windows XP Service pack 2, malware/adware installations. 这可能是由于RAM错误,设备驱动程序不正确/损坏,软件编写/更新不佳以及Windows XP Service Pack 2(通常为恶意软件/广告软件)引起的。

Usually you get this error message when performing a specific task, and if that happens you need to check the corresponding 3rd party's website/support department to see if they are aware of the problem 通常,在执行特定任务时会收到此错误消息,如果发生这种情况,则需要检查相应的第三方网站/支持部门,以了解他们是否知道问题所在。

..a while back Symantec Antivirus caused the 0xC0000005 error with an additional message about a file called SAVRT.SYS . ..a一段时间后,Symantec Antivirus导致0xC0000005错误,并带有有关名为SAVRT.SYS的文件的附加消息。 A simple software update to the Symantec Antivirus cured the problem. 通过对Symantec Antivirus进行简单的软件更新即可解决此问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM