About 14,000 results
Open links in new tab
  1. Why warning C4279 happens? - social.msdn.microsoft.com

    Jul 8, 2013 · The message seems pretty clear to me. The type library in msxml6.dll uses an identifier that happens to be a C++ keyword. You wouldn't be able to refer to this identifier in …

  2. WinRT component using static library - social.msdn.microsoft.com

    Aug 24, 2012 · Standard C++11 provides modern constructs to achieve similar or higher simplicity than C++/CX provides on top of WinRT/COM: use shared_ptr rather than raw pointers whenever …

  3. How would you flip horizontally, double, and shirnk a bitmap …

    Oct 1, 2009 · There is no image processing library in Visual C++. Windows has some GDI/GDI+ functions documented in Windows SDK, but they are optimized for screen rendering and you …

  4. mfc and IMPLEMENT_DYNAMIC - social.msdn.microsoft.com

    Dec 13, 2017 · C++ by itself does not have a feature for dynamic runtime class information. But Microsoft solved this problem by providing a CRuntimeClass. This structure can be used for …

  5. minidump __try __except question

    Aug 21, 2009 · Also, C++ exception handling is more flexible, in that it can handle exceptions of any type. For C++ programs, it is recommended that you use the C++ exception-handling …

  6. Programming a GUI for serial connection with PIC

    Dec 2, 2010 · Be careful not to confuse C and 'native' C++ with either C++/CLI or C#, which are distinct programming languages. The WIN32 API was originally (and still is) a C API, and can be …

  7. Pragma directive - social.msdn.microsoft.com

    Jun 8, 2012 · Is there anyway to use custom pragma directives in Visual C++ 2005. I have a source file wherein the pragma derectives are declared as below abc.c (source) #pragma ghs …

  8. Native pointers in managed classes (ref class)

    Aug 8, 2014 · I have a managed class (ref class) and inside it some C/C++ native pointers. My question is, do i have to delete (manage in general) these native pointers or the .net frameowk's …

  9. Should I learn Visual basic before any other programming …

    Jul 31, 2008 · Will learning visual basic before c++ or another programming language give me a advantage to the programming languages availible?

  10. How to convert IStream to Base64 string in c++

    Nov 26, 2019 · I have C++ IStream and I want to convert it to base 64 string in c++ so that I can use it in C++/cli to convert it to .net stream.