Knowledgebase
External exception C0000006
Posted by Alexander Alexeev on 04 September 2010 13:32
|
|
Problem: I'm getting error message about external exception C0000006. Reason: That's EXCEPTION_IN_PAGE_ERROR. It means that the OS loader failed to page in some data required for the application to run, probably due to an I/O error or other error. May be you've removed disk with application or disconnected network. Solution: You can use a Delphi compiler directive to tell windows to load the full executable. This works if you have Delphi > 2006. Otherwise you can copy your application on local HDD to run. See also: - http://stackoverflow.com/questions/1317886/external-exception-c0000006 | |
|