About 21,800 results
Open links in new tab
  1. std::condition_variable destructor crashes on VS2012

    Sep 17, 2014 · The C++ standard requires as the only precondition for this destructor to work as expected that no threads wait on the condition variable: " There are no threads blocked on …

  2. Interop C++ --> COM --> C#

    Apr 24, 2011 · I have a C++ DLL that is calling functions from a C# DLL using COM. The C++ dll is more or less of a wrapper.

  3. Storing a pointer to an object - social.msdn.microsoft.com

    Dec 22, 2011 · 1 To mean what C++ would call a pointer - e.g if you have SomeClass myObj; then myObj is a reference variable in .Net-speak, or a pointer to an object of type SomeClass …

  4. What to include for wglGetCurrentContext ()

    Apr 7, 2016 · Note: C++ does not support default-int and so on. There are about 180 of those errors. I get this even if I move my #include statement to the top of my .cpp file, so I know that …

  5. Lower Level Keyboard Hook problem C++

    Jan 6, 2015 · I am working on a Very Simple Low Level Hook Program in which the Program 'cout<<' some thing when a Letter is pressed but the problem is that the Hook doesn't work. …

  6. c++/cli array in value struct - social.msdn.microsoft.com

    Oct 15, 2009 · I found this information somewhere on the web from one of the Visual Studio C++/CLI developers. This quick template library will allow a fixed array in a value type by using …

  7. Visual Studio 2015 intelisense is too slow

    Dec 22, 2015 · Is the C++ project very big? Do you use any tools such as Resharper or Node tools for visual studio? Is the slowness only happened with C++ project? If you create a simple …

  8. Visual Studio Debugging shows incorrect values

    Aug 3, 2007 · Currently, I'm debugging a C++ program in VS2005 and while debugging i get garbage values in the debug Watch & Locals windows.

  9. C++ - Serializing class instances with MSMQ

    Feb 5, 2013 · C# provides an excellent mechanism for serialising instances of classes over MSMQ (I'm using an XMLFormatter). I can't seem to find any documentation about how to …

  10. Is System.Transactions.TransactionScope available in C++/CLR?

    Nov 21, 2008 · To get the equivalent in C++ you'll need to use C++'s form of deterministic cleanup capability -- i.e. the 'delete' keyword. Try the following and see if things work: