Reputation: 107
in one of our client system we are getting this error message, not allowing us to open application. & in the log file path :Error log file: C:\Program Files\Common Files\Microsoft Shared\VFP\vfp7rerr.log i got the error message like "statdesktop.tmrtimer.timer" & i'm new to this type of syntax & concept,please let me know the reason behind this error.
Upvotes: -1
Views: 8989
Reputation: 5458
The first step I use when diagnosing C0000005 problems is DEP. Older versions of Foxpro, like version 7, when using 3rd party libraries often have problems with DEP. There were a number of changes made in Foxpro 9 in how memory is allocated for executing code specifically to deal with this.
Make sure to add the executable to the DEP exclusion list and try again.
Upvotes: 0
Reputation: 48139
Do you have the source-code to the application? It appears the error is a result of a timer object as so referenced per your post. Look for that in the source code and see what it is trying to do. It may be looking for an import file of some type to be processed and either does not exist, or may have bad data it is trying to process. It could also be something like permissions to some path it is trying to work with.
So, without much more than what you provided, I can't offer more. Maybe when you find the source code, you can update this existing question with more details and myself and others may follow-up with more.
Upvotes: 0