'Visual Studio'에 해당되는 글 5건
- 2018.08.31 The resolution of std::chrono::high_resolution_clock doesn't correspond to measurements
- 2018.01.18 How to create conditional breakpoint in Visual Studio
- 2016.12.08 How to build against Windows 8.1 SDK with Visual Studio 2012
- 2016.11.10 How to remove project dependency in Visual Studio
- 2016.08.24 How does VS 2005 Embed Native Manifest Files
2018. 8. 31. 11:30
The resolution of std::chrono::high_resolution_clock doesn't correspond to measurements
2018. 8. 31. 11:30 in link/develop environment

2018. 1. 18. 14:15
How to create conditional breakpoint in Visual Studio
2018. 1. 18. 14:15 in link/debug

- String
- std::stirng
- Ansi
- strcmp(newString._Bx._Ptr,"my value")==0
- Unicode
- wcscmp(newString._Bx._Ptr, L"my value")==0
- Example
- wcscmp(dosPath._Bx._Ptr, L"C:\\Windows\\System32\\notepad.exe") == 0
- link
2016. 12. 8. 12:00
How to build against Windows 8.1 SDK with Visual Studio 2012
2016. 12. 8. 12:00 in link/develop environment

2016. 11. 10. 16:36
How to remove project dependency in Visual Studio
2016. 11. 10. 16:36 in text/develop environment

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
- Right click project, select Properties.
- Select Framework and References under Common Properties
- Select the references thats not needed.
- Click on Remove Reference.
2016. 8. 24. 15:52
How does VS 2005 Embed Native Manifest Files
2016. 8. 24. 15:52 in link/develop environment
