Since you've moved to a newer version of MFC you shouldn't be trying
to link against that old version. Does your project perhaps have these
library names in the linker settings - there's usually no need to have
these.
Dave
A simple check: open the .vcproj file in a text editor and see if mfc42 appears anywhere
(be VERY careful if you choose to edit these files; you can render the project unloadable
into VS if you mess them up! Always make a backup copy first!) Often what I do is use
the information from the search to home in on the correct place to change the settings
using VS (it is a real royal pain that the 'project settings' are not searchable!)
joe
Joseph M. Newcomer [MVP]
email: newc...@flounder.com
Web: http://www.flounder.com
MVP Tips: http://www.flounder.com/mvp_tips.htm
"Joseph M. Newcomer" <newc...@flounder.com> wrote in message
news:8aj1c555btru123ml...@4ax.com...
If they're just DLLs that you use, they shouldn't be a problem to the
building of your application. However, if they're source components
that you build, or you have some static libraries that depend on the
old MFC lib, then they may be the cause.
Dave