While running some code I am getting a unhanded exception for file not found with no file location or file name specified. If I break I can see the function that the error is being reported from. I can reach break points before where that function is called but can't enter into the function with out the exception being thrown. The function is in the same class and C# code file. There were issues with references to other projects in the past with this project. Could it an issue of scope or delayed loading because of calls made from with in the function?

Visual Studio 2008, C#

Any ideas welcome, Answers wanted.

link|improve this question

I have seen this type of thing happen when ActiveX registration goes awry. – Brett Widmeier Jan 25 '10 at 23:11
If you can break at the moment the exception is being thrown, you have all the information you need right in front of you. Just go to the frame that throws and see why it throws. If the code editor debugger wanna be doesn't cooperate, use a real debugger like Windbg. – Remus Rusanu Jan 25 '10 at 23:36
feedback

2 Answers

up vote 0 down vote accepted

look to see if fuslogvw is complaining about any missing assemblies

link|improve this answer
feedback

You could try using Procmon from Sysinternals. It can give you loads of useful information about a running process, including all file access attemps.

link|improve this answer
1  
I've seen this many times when an unmanaged dependency is missing. When will microsoft fill in the file exception info properly? – morechilli Jan 26 '10 at 0:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.