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
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in SQL-SERVER-2008
- How to create separate rows for each unique value in source data
- How to Multiply all values within a column with SQL like SUM()
- Concatenated string in column alias
- Column value divided by row count in SQL Server
- MSSQL Bulk Insert CSV - Multiple columns include commas
- String to DATETIME with TimeZone
- Compare each records of same table in sql server and return duplicates
- 2008R2 SQL Code for case when using the SUM?
- Separate string into columns
- Pass parameters to sql agent job step (Transact-SQL Script)
- using Case get values from different table in sql server
- How to use Replace an unknown length of characters in SQL Server?
- Join Multiple table without using joins
- call an sql function by name returned by select
- How to create a check (Table A.Id and Table B.Id and TypeId = 1)?
Related Questions in VISUAL-FOXPRO
- replace with for in Foxpro
- insert a new line of row into grid without recordsource
- Export data to multiple Excel sheets?
- Summarize Table Based on Two Date Fields
- Inconsistent query results
- Wix Bootstrapper - Best way to update/install Visual FoxPro database
- Code to assign an ID when button is clicked
- Unable to display data to grid from stored procedure in VFP
- update move mouse
- How to fix blank screen if application is swithed in RDP
- Use a in FoxPro written DLL in a C# windows-forms-application
- Microsoft Visual FoxPro Pound, Hash, Hashtag, Number Sign
- How to post json data using West Wind in VFP
- VFP 9 - Can't delete Commandbutton without having the program crash
- Foxpro form control "object not found" (but it existed in the form!)
Related Questions in WINDOWS-XP-SP2
- WindowsForm Application fails to run on different computer
- Targeting Windows XP SP2 with Visual C++ 2010 (VS2010) SP1
- Problem making MinGW-64-compiled program self-contained in Windows XP
- Where do I find the schema for .NET v2.0.50727 (SP2) machine.config file on XP?
- How to create, edit, and save file through MS Shell from Ubuntu Terminal?
- NASM Error, Unrecognized output format
- sql server 2008 express installation problem in windows xp sp2
- Fatal error: Exception code=C0000005 and VFP9
- How to clear "temporary" (tomApplyTmp) formatting from a RichEdit?
- Querying win32_NetworkConnection is slow on Windows 7
- GetSystemPath or SHGetSpecialFolderPath - Which do I use for CommonDocs folder?
- Execute antivirus program programmatically using delphi
- SQL Server Setup Failure on installing SSMS
- could not start the service MySQL.error 0
- how to check if https sites are supported on windows OS?
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 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.