Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

libraries in Visual C++

  • 22-06-2004 2:42pm
    #1
    Closed Accounts Posts: 17


    Hello,

    I've written a series of C++ libraries which I use in an MFC application I'm also writing.
    I'm writing this MFC application in DEBUG mode. What I'm wondering is should I use the release or debug versions of my libraries??

    Any comments would be appreciated,
    Bostitch


Comments

  • Registered Users, Registered Users 2 Posts: 4,676 ✭✭✭Gavin


    It's simple enough.. if you are going to release the application, use release mode. It will be faster.

    Whilst developing the app stick with debug on everything, makes it much easier to debug if you are able to step through the library code and will provide you with helpful error messages when it crashes.

    Gav


  • Closed Accounts Posts: 17 Bostitch


    Thanks for that.


Advertisement