Archive

Archive for October, 2010

Suppressing Visual Studio 2008 Warnings

October 28th, 2010 1 comment

Warning:

Solution:

  1. Open Project Settings.
  2. From the left menu, select C/C++->General and then find Detect 64-bit Portability Errors.
  3. Set the value to “No“.
  4. Now the warnings will be disappeared.

Warning:

Solution:

  1. Open Project Settings of your dll project. In here, this will be “tlib” project.
  2. From the left menu, select C/C++ -> Output Files and then find Program Database File.
  3. Change the value to “$(TargetDir)$(TargetName).pdb” from “$(IntDir)\vc90.pdb”.
  4. Rebuild the library and the warnings will be disappeared.
C/C++ -> Output Files
Program Database File
Categories: Developer's Tool Tags: