> That's great Igor, it solves that
> However it causes:
[quoted text clipped - 7 lines]
> msvcrt.lib(cinitexe.obj) : warning LNK4098: defaultlib 'libcmtd.lib'
> conflicts with use of other libs; use /NODEFAULTLIB:library
I suspect you should have only done the changes described in the article
to your Release build. Or at least in Debug build, replace msvcrt.lib
with msvcrtd.lib.
As to libcmtd.lib, make sure that you use CRT DLL. Project Properties |
C/C++ | Code Generation | Runtime Library, set to Multi-threaded DLL in
Release build and Multi-threaded Debug DLL in Debug build.

Signature
With best wishes,
Igor Tandetnik
"On two occasions, I have been asked [by members of Parliament], 'Pray,
Mr. Babbage, if you put into the machine wrong figures, will the right
answers come out?' I am not able to rightly apprehend the kind of
confusion of ideas that could provoke such a question." -- Charles
Babbage
Bonj - 12 Oct 2004 18:07 GMT
Oh RIGHT! so the "d" is for debug!
OK, got it thanks
I'll try that
> > That's great Igor, it solves that
> > However it causes:
[quoted text clipped - 15 lines]
> C/C++ | Code Generation | Runtime Library, set to Multi-threaded DLL in
> Release build and Multi-threaded Debug DLL in Debug build.