.NET Runtime 2.0 error

cmarques

New member
Joined
Jul 25, 2007
Messages
1
Programming Experience
10+
I have a VS2005 VB.NET app running at a customer, and one of the pc's is getting the following windows error that shows up in the EventViewer in the Application group:

See the attached screenshot from the event viewer.

Has anyone encountered this before?

Don't know if the screenshot was attached or upload, so here's the error:

EventType clr20r3, P1 bossoftware.exe P2 1.99.1007.10005, P3 4682a55b, P4 system.drawing, P5 2.0.0.0, P6 461ef1b8, P8 6c, P9 system.argumentexception, P10 NIL

Thanks

Chuck
 
Last edited:
THat's a null pointer error in optimised code.. I recommend you try/catch the entire app, and dump as much detail as possible. Compile the app in Debug mode rather than Release. Also bear in mind it could be the framework loading soemthing like a config file where a setting is unexpectedly null or missing. It is normally more verbose in thse cases though
 
Back
Top