Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C5 error in complex app

Status
Not open for further replies.

TamarGranor

Programmer
Jan 26, 2005
2,477
1
38
US
An app I've been working on that's nearly ready for beta testing is giving random C5 errors and I'm looking for ideas.

Here's the background: I have a VFP EXE (call it UI) that instantiates a VFP out-of-process COM object (call it DL). DL instantiates another VFP COM object (call it OnlineTimer) as well as a C# COM object (call it Comms).

The C# object, Comms, talks to some hardware and passes information between the hardware and DL. When it has information ready for DL, it sets a flag. DL has a timer that interrogates that flag and when there's data available, processes it. Processing the data means parsing the XML format that Comms returns and, generally, poking updates into the object model maintained by UI. Many, many lines of code in DL look something like:

This.oCallingApp.oNetwork.DoSomething()

They mostly drill more layers down into the object model before actually calling a method.

After DL finishes processing one returned item, it makes a call to a UI method that repaints the interface. Each form has a method that can be called to update its display with the latest data.

The C5s are happening in DL. Based on the VFP9Rerr.LOG file that's automatically created, they happen in various places, but it looks like the line that crashes is always one that includes This.oCalling.something. (I don't have enough data yet to be sure that's the case.)

Naturally, I haven't been able to cause the crash here.

To try to solve this, I've added RESOURCE=OFF to the Config.FPW (to eliminate FoxUser.DBF corruption as a possibility) and checked the code for the RETURN inside WITH-ENDWITH problem (no cases
found). I've now given them a new build with more logging than I had before, and particularly logging some UI actions to the log I'm creating in DL, hoping that'll give me some clues.

I've passed other ideas, like virus scanner issues and driver problems on to the client to try. They did report these configurations for the two users who've already reported crashes with the latest version:

User 1:
Display Adaptor = Intel(R) 82915G/GV/910FL Express Chipset Family
Driver = C:\WINDOWS\system32\DRIVERS\ialmnt5.sys + others
Provider = Intel
File Version = 3.0.0.4020
Copyright = 1999-2004, Intel
Digital Signer = Microsoft Windows Hardware Compatibility
Set to 1080x1024 pixels, 32bit color

Processor = Intel Pentium 4 CPU, 3.20GHz
Memory = 3072 MB
Operating System = Microsoft Windows XP Professional, 5.1.2600
Service Pack 2


User 2:
Graphics = Intel(R) 82845G/GL/GE/PE/GV Graphics Controller
Graphics Driver = C:\WINDOWS\system32\DRIVERS\ialmnt5.sys + others
Provider = Intel
Date = 3/23/2006
Version = 6.14.10.4544
Digital Signer = Not digitally signed
1024 x 768 pixels
Highest (32 bit) color

Intel Pentium 4 CPU, 2.00 GHz, 512 Mb RAM
Microsoft Windows XP Professional, Version 2002
Service Pack 2

Any ideas where to look would be appreciated.

Tamar
 
Is there a possibility that this could be a hardware issues?

I started getting errors and crashes in SBT accounting. My son always using rdc to run the software "because thats the way he likes to do things" never got the errors and we were both using the sware daily.

Since i started logging in with RDC i have not had any errors.

I will be reversing memory sticks in my machine and retesting.
wjwjr

This old world keeps spinning round - It's a wonder tall trees ain't layin' down
 
Im sorry Remote Desktop Connection to the server so code was executing soley in the servers memory not mine
wjwjr

This old world keeps spinning round - It's a wonder tall trees ain't layin' down
 
Ah, not relevant here, where each user has the app fully installed on his own machine. But I have suggested that the client look at drivers, at least.

Tamar
 
Thanks, Bart. Yeah, I'd seen that already, but I'd rather see it twice than not at all.

Tamar
 
We've tackled a lot of that along the way because we had issues with DL not shutting down when it should.

But wouldn't that only be an issue when we're trying to shut it down, anyway? The crashes are happening while the users are working with the app, not when they're closing it.

Tamar
 
Tamar,

Sounds famaliar to a battle we just fought here. Turns out the different VFP programs were on different servers running different VFP runtime modules.

Updated all the servers to the same VFP runtimes (VFP9 SP2) and the C5 errors went away. Also had to update one server running .net and C# code to Visual Studio 2008 runtimes.



David W. Grewe Dave
 
I discovered late this afternoon that, in fact, versioning may be part of the problem. I'm building in VFP 9 SP1, and they're using SP2 runtimes. I had already asked, but it never got checked.

Tamar
 
And just to add some closure, they ran it all day Friday with the right runtimes, and with a new build that addressed an issue of the UI interrupting the timer code in DL with new requests, and didn't crash at all.

Tamar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top