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.
Fatal error: Exception code=C0000005 and VFP9
8.5k Views Asked by Sharanamma Jekeen At
2
There are 2 best solutions below
1
jveazey
On
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.
Related Questions in .NET
- file download method in visual studio 2017
- Repository manager receives the wrong connection string in .net core
- MongoDb not connecting C#
- The current .NET SDK does not support targeting .NET Core 6.0. Brand new WPF Project VS Community 2022 17.9.5
- Why Scanning GSI on DynamoDb doesnt work as fast as expected when using CONTAINS?
- Are "blittable types" really unmanaged types for StructLayout Sequential
- Failed to fetch dynamically imported module on Blazor JS Interop
- Problem to upload several images per one request
- Implementing Azure AD B2C Authentication in .NET 8 Blazor Project (RenderMode: InteractiveAuto)
- Stripe connect payout - throws exceptions
- 'IOException: The cloud file provider is not running', when trying to delete 'cloud' folder
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Convert C# DateTime.Ticks to Bigquery DateTime Format
- Socket.io nodejs server .NET connection
- Producer Batching Service Bus Vs Kafka
Related Questions in SQL-SERVER-2008
- Why does the following script throw database still in use when selecting the master database first?
- Return Duplicate Rows
- SQL Data entry - finding sequence to enter info
- Why is this query in SSMS showing columns/tables as numbers?
- Query from multiple tables based on the table name?
- How to Let Python Connect to a SQL Server Database
- Need to fetch Minimum value for Each Id and make the BidSuccess column to 1
- Spring Boot Scheduled Annotation Job Issue
- Use different WHERE clause based on condition?
- Error when inserting special characters such as Ñ and accents á, é, í, ó, ú. using BULK OPENROWSET from python
- Delete all records except the max value of a group
- How to use SQL Server stored procedures in React js express server
- Loop through date in SQL Server and exclude the dates within a range of one week
- Find amount greater than the average amount
- Update trigger - both INSERTED and DELETE hold same value after update
Related Questions in VISUAL-FOXPRO
- How to prevent combobx dropdown event in border click
- How do I display only the last 5 transactions?
- Why is the subquery inside an iif affecting results?
- Problem calling .NET DLL from Visual Fox Pro
- FoxPro_ manage data filtered of a table in a cursor
- How can I convert Visual-Foxpro to Oracle
- Using EntityFramework for Visual FoxPro
- I would like to know how to reindex Express program (.CDX) files using PHP
- Adding Record in DBF from VFP9 Form entry
- Error building key for index ....path tag "nameIndex" DBF
- Visual FoxPro connection driver
- Update cursor value in Visual Foxpro 6
- Insert data from one .dbf table to another .dbf table in foxpro 6
- Is there a way to hide User procedures and its code in visual foxpro9
- How do you turn a class in a class library into code in a prg?
Related Questions in WINDOWS-XP-SP2
- Problem making MinGW-64-compiled program self-contained in Windows XP
- How to clear "temporary" (tomApplyTmp) formatting from a RichEdit?
- how to check if https sites are supported on windows OS?
- Program compiled on Win7 crashes in XP (Visual C++ 6)
- SQL Server Setup Failure on installing SSMS
- NASM Error, Unrecognized output format
- My AVD creator window is missing setting RAM option
- Fatal error: Exception code=C0000005 and VFP9
- WindowsForm Application fails to run on different computer
- Windows XP Outlook 2003/2007 do not support Google image chart
- Compiled a C++ program in Visual Studio Professional 2013, will not work with Windows XP SP3
- Closing form with X much slower then taskbar close
- I can't install .net framework 4 on my desktop which has Windows XP service pack 2 O.S
- How to create, edit, and save file through MS Shell from Ubuntu Terminal?
- Querying win32_NetworkConnection is slow on Windows 7
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
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.