2015-02-06 160 views
-1

我在c#中为我的雇主制作了一个自动邮件工具。但它在一夜之间坠毁。如果你需要一些代码或任何东西,请问,我会提供。有谁知道是什么原因导致了这个错误?

错误:

http://puu.sh/fxyuP/ac05065f22.png

http://puu.sh/fxywx/7008f782ef.png

puu.sh/fxyyn/f47b67d6d4.png

事件日志一般错误:

错误的应用程序名称:DSVODBC APP .exe,版本:1.0.0.0,时间戳:0x54d34893 错误模块名称:clr.d LL,版本:4.0.30319.34014,时间戳:0x52e0b86c 异常代码:0xc00000fd 故障偏移:0x000000000000ba27 出错进程ID:0x147c 错误的应用程序的开始时间:0x01d041eff9cd1cd3 错误的应用程序路径:C:\用户\ adm.dominic.bruins \ Documents \ DSVODBC APP - x64 \ DSVODBC APP \ bin \ Debug \ DSVODBC APP.exe 错误模块路径:C:\ Windows \ Microsoft.NET \ Framework64 \ v4.0.30319 \ clr.dll 报告编号:71204741-ade3- 11e4-80ce-0050569554b7 断裂作用包全名: 断裂作用包相对的应用程序ID:

+0

你有没有做过任何调试? 另外,如果您检查事件日志,您可能会发现更好的错误消息。 – Pheonyx 2015-02-06 08:50:46

回答

0

Source

A C0000005 Error is a Windows System error. It is an Exception Error that occurs when a process (application, driver, etc.) tries to execute a processor command that references memory outside the space allocated to that process by the Operating System.

There are many possible causes ranging from corrupt data tables, to a bad network connection, ActiveX controls, or Printer or Video driver errors. WIthout knowing what type of error you are seeing, it is impossible to guess what the cause may be.

+0

谢谢。今天学到了一些东西。有关如何在将来避免此错误的任何建议? – ferdi0314 2015-02-06 09:25:20

+0

@ ferdi0314首先尝试从事件日志中获取此错误的确切原因。然后我们可以决定什么是修复 – CodingDefined 2015-02-06 09:43:03

+0

当然,这是从事件日志中的常规选项卡的错误:不能添加请等待 – ferdi0314 2015-02-06 10:04:47

相关问题