I am sorry if I am to exercise bad judgment again but I could not stomach a thought that it is not a C++ question since it is a compilation error so strange that I cannot explain it at all.
I had this include statement in a .cpp source file:
#include <C:\WINNT\SYSTEM32\MFCN4D.DLL>
The error I got, justly, that such a file does not exist. I corrected the statement:
#include <C:\WINNT\SYSTEM32\MFCN42D.DLL>
This file does exist but I keep getting the old error on compilation:
Error 1 fatal error C1083: Cannot open include file: 'MFCN4D.DLL': No such file or directory
Wait a second, I commented the statement out completely which now does not even have MFCN4.DLL only MFCN42.DLL. The error persists even after I close the VS2005 browser and reopened it again.
I did a total find:
Find all "MFCN4D.DLL", Subfolders, Find Results 1, "Entire Solution"
Matching lines: 0 Matching files: 0 Total files searched: 4
Also when I get the compiler error it points to Line # 1 and it is not where this include is.
Am I hallucination or something I am almost afraid to post this fearing that some simple oversight is causing this. It might be obvious to someone but not me.
Thanks.

C++ Compilation error; very strange?
Neil Groves
Does cleaning the solution fix the issue
Note: such blunder and how you are trying to use the #using directive indicates to me that you are trying to learn the language through these forums. If you really want to understand the language books are the best way.
Thanks,
Ayman Shoukry
VC++ Team
rb531
RussA
Thanks.
Zeph_Solaris
ZBufferMan
Or did you mean to use the #using directive
Thanks,
Ayman Shoukry
VC++ Team