CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: MFC/CRT DLLs

  1. #1
    Guest

    MFC/CRT DLLs

    Are the MFC and CRT DLLs shipped with VC 6.0 backwardly compatible with VC 4.2. DLLs? I have noticed that apps that were
    built with VC 4.2, do not execute (DLLs fail to load, or oridinals not found) when the DLLs from VC 6.0 have replaced those from
    VC 4.2 in the SYSTEM directory. Any ideas?


  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: MFC/CRT DLLs

    Yes, Microsoft needs a better way of distributing and naming their DLL's. That's why I always build my MFC applications with the static MFC libraries. This way, when VC++ 7.0 comes out, my application built with VC++ 4.2 will still run, regardless of what changes are made in the MFC DLL's.

    Regards,

    Paul McKenzie



  3. #3
    Guest

    Re: MFC/CRT DLLs

    I can only confirm these problems. So unless you don't go for statically linked libs there is probably no other way around as to copy MFC dll's into private app directory.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured