Results 1 to 2 of 2

Thread: MFC Questions

  1. #1
    Hyperactive Member
    Join Date
    Jun 11
    Posts
    326

    MFC Questions

    When I create a new MFC application it takes me to the wizard. In the wizard, there are two options that I don't really understand.

    1: Use unicode libraries.

    2: Use MFC in a static library or a shared DLL.

    I'm making a licensed application and I will be using at least one COM dll. Can someone shed some light on what these options mean?

    Thanks!

  2. #2
    Raging swede Atheist's Avatar
    Join Date
    Aug 05
    Location
    Sweden
    Posts
    8,013

    Re: MFC Questions

    #1: I would believe that the unicode libraries handle all strings as unicode.
    #2: This determines how you link to the MFC libraries. Static linking will link your executable with the library at compile time, thus including the library in your executable. Dynamic linking on the other hand will happen at runtime, and the DLL must be located on the end users system.
    ---My Flickr photo (mostly screenshots these days!) stream. Have a look!

    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    TCP client/server connection | Retrieving the EventHandler for any Event by code.
    Check out the work in progress: Vortex - C++ 3D Game engine for windows and linux - (Development blog - Leave a comment!)

Posting Permissions

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