Taking a guess at soemthing that might help...
I have in debug mode to ignore these files:
MSVCRTD;libcmtd;msvcrt;atls
In release mode , I ignore these files:
libcmtd;msvcrt;atls
Hope that helps...
edit: oh and make sure in C/C++ --> code generation -> runtime library is set correctly for your application. Stuff like Multi-threaded DLL (/MD) needs to be set if your are making a DLL. Multi-threaded (/MT) needs to be set if you are make a window program. I notice I always have to set Multi-threaded (/MT) when making a regular windows application as it always defaults for DLL use for some reason.