About 7,480 results
Open links in new tab
  1. NET Framework written in C++? - social.msdn.microsoft.com

    Aug 31, 2006 · Sometimes the framework classes delegate to CLI code (i.e. the InternalCall member, in which case the classes are technically written in C#, C/C++, and assembly).

  2. Managed C++ Global Array - social.msdn.microsoft.com

    Jun 10, 2011 · C++ is a pure native language, and C++/CLI is not. sizeof () is intended for native code only. It returns 4 because that's the size of a pointer or reference on x86 and has no idea …

  3. C++ Listbox ItemsSource - social.msdn.microsoft.com

    Nov 11, 2013 · Visual C++ MVP | Website | Blog | @mikebmcl | Windows Store DirectX Game Template Proposed as answer byXiaoliang Chen - MSFTModeratorThursday, November 7, …

  4. How to add visual c++ RunTime libraries to be part of C# setup …

    Oct 29, 2009 · They're typically in Program Files\Common Files\Merge Modules, and there'll be ATL, MFC and CRT choices - it depends which pieces of the C++ runtime you nmeed. Method …

  5. Excel Spreadsheet IO From C++ - social.msdn.microsoft.com

    Feb 25, 2014 · The examples I find are all C# or VB and I cannot work out what to write in c++. The call I tried, below, fails to compile. It does not like the way I'm trying to specify the format …

  6. Convert std::string to LPCWSTR (best way in c++)

    Feb 11, 2010 · You should create a local variable in some cases, because C++ may call a string destructor and destroy string object before API calling, so this API function may get a pointer …

  7. Microsoft C++ exception: std::bad_alloc at memory location

    Aug 9, 2012 · Unhandled exception at 0x753d9673 in ....exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0031b414.. and after trace, I found it is due to the _line. …

  8. c++/cli MarshalByRefObject - social.msdn.microsoft.com

    Jun 1, 2007 · I'm trying to modify an application by changing a class to support .Net Remoting. I've added the MarshalByRefObject base class and have made all structures used as …

  9. connecting to mysql database from the visual c++ console …

    Apr 27, 2016 · Question 0 Sign in to vote how to store the data generated from the visual studio c++ console application into the mysql database please let me know is there any code to solve …

  10. Use c++ class in VB.net - social.msdn.microsoft.com

    Apr 7, 2017 · I am using C++ because I need to use a third-party library (.lib file) meant for C or C++. I have managed to make a console application in Microsoft C++ to work with the library, …