About 5,150 results
Open links in new tab
  1. virtual key codes for SendInput function - social.msdn.microsoft.com

    Mar 14, 2017 · You also can use VkKeyScan method for this.The VkKeyScan function translates a character to the corresponding virtual-key code and shift state for the current keyboard

  2. How to format a drive with C++? - social.msdn.microsoft.com

    Jul 12, 2011 · Well, newer versions of Windows, format likely relies on the Virtual Disk Service. Because this is a service which is run with Local System privileges it should be able to format …

  3. C++ Debugging - social.msdn.microsoft.com

    Dec 7, 2012 · What is probably happening is that your debugging session is continuing after you've exited from your program's main () function and so you end up wherever main () was …

  4. How to separate a C++ program into multiple .cpp and .h files

    Jun 4, 2014 · Functions other than main can be in separate cpp files (each named for the function) or grouped into cpp files based on some association that makes sense to you (and …

  5. Critical Section in Win32 - social.msdn.microsoft.com

    Apr 5, 2010 · In C++, you would wrap it in a class so that it's initialized when the variable comes into existence." If it's global and not initialized when you expect it to be, and you're using a …

  6. Queue-triggered Azure Function: Queue messages processed …

    Jan 7, 2019 · I have a Queue-triggered Azure Function that performs some long processing (5-7 minutes). The function performs some calculation and writes some data to DB. It's being called …

  7. How select VSTemplate depend condition.

    Dec 27, 2017 · GlobalDictionary = gcnew Dictionary<String^, String^> (replacementsDictionary); } For the child, it's a little complicated. Because replacementDictionary was not referenced, after …

  8. Suppress CA Warning doesn't work in Visual Studio 2017 (C++/CLI …

    Oct 23, 2017 · Is it a known limitation of Visual Studio 2017? Or am I missing some configuration? Steps to reproduce: - create vcxproj in Visual Studio 2017 15.4.1 with Code Analysis enabled; …

  9. How to build Visual C++ project to target both 32 & 64 bit platform.

    Aug 29, 2012 · I have a project build using VS 2008 IDE. It has C# and C++ projects inside the solution file. My C++ project should generate both 32 & 64 bit platform dll. Write now I am …

  10. C++: What is the printf format spec for "float"

    Aug 29, 2011 · C++: What is the printf () format spec for "float"? There's none. The compiler always converts a float to a double when passing to a variadic function (like printf). So floats …