vc2005 and Mfc DLLS

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Compling a legacy VC6.0 program with the VC2005 compiler used mfc80 dlls. Do
these get installed with the .NET runtime or do they need to be installed
separately.
 
Compling a legacy VC6.0 program with the VC2005 compiler used mfc80 dlls. Do
these get installed with the .NET runtime or do they need to be installed
separately.

They're not related - a separate redistributable.

Dave
 
Compling a legacy VC6.0 program with the VC2005 compiler used mfc80 dlls.
Do
these get installed with the .NET runtime or do they need to be installed
separately.

Another solution is to link against the static version of the MFC libraries.
They get linked into your exe, which makes it bigger, but then you don't
have to care about the runtime dlls.
--

Kind regards,
Bruno.
(e-mail address removed)
Remove only "_nos_pam"
 
Back
Top