2018. 8. 31. 11:30

The resolution of std::chrono::high_resolution_clock doesn't correspond to measurements

This problem was fixed in Visual Studio 2015.

Issue


2018. 1. 18. 14:15

How to create conditional breakpoint in Visual Studio

  1. String
    1. std::stirng
      1. Ansi 
        • strcmp(newString._Bx._Ptr,"my value")==0
      2. Unicode
        • wcscmp(newString._Bx._Ptr, L"my value")==0
      3. Example 
        • wcscmp(dosPath._Bx._Ptr,  L"C:\\Windows\\System32\\notepad.exe") == 0
      4. link


2016. 12. 8. 12:00

How to build against Windows 8.1 SDK with Visual Studio 2012

How to build against Windows 8.1 SDK with Visual Studio 2012


Working with Project Properties

2016. 11. 10. 16:36

How to remove project dependency in Visual Studio

Issue : When removing a dependency of a project, I got a message "The dependency was added by the project system and cannot be removed


Solution

  1. Right click project, select Properties.
  2. Select Framework and References under Common Properties
  3. Select the references thats not needed.
  4. Click on Remove Reference.


2016. 8. 24. 15:52

How does VS 2005 Embed Native Manifest Files

How does VS 2005 Embed Native Manifest Files