07-27-2005 07:16 PM
07-28-2005 03:28 AM
Try setting the Build->Configuration option to Release, instead of Debug.
JR
07-28-2005 03:39 AM
You can prevent error messages to popup by unchecking the "Break on library errors" option. If you are using version 7 you find it in Run >> Break on... menu, while in version 6 it's located under Options >> Run option in the project window.
These options should only be set when your application is at good level of debug, since they may hide an error and lead to unpredictable behaviour of your program.
You may want to mask these popup when some part of your code is executed, leaving the option checked and using:
previousState = GetBreakOnLibraryErrors ();
// The code from which you want to exclude error popups
SetBreakOnLibraryErrors (previousState);