About 50 results
Open links in new tab
  1. Visual C++ 2006 Express Link - social.msdn.microsoft.com

    Feb 22, 2010 · I have a very large program that was built on Visual C++ 2006/XP. The software builds but doesn't run using Visual C++ 2008/Win7. Where can I get the Express version for Visual Studio …

  2. How to call managed c++ API from unmanaged c++ code

    Feb 28, 2015 · The C++/CLI wrapper Class is another way we can use to call managed code from unmanaged code. For example, we create a mixed CPP DLL (with /CLR) and import the managed …

  3. Calling function from another Form. C++

    Nov 13, 2007 · I have two forms (implemented using Windows Forms - C++) using the same namespace the main form [FORM1] sets values in [FORM2] which works correctly. FORM1 file therefore …

  4. Failed ASSERT when calling CDialog::OnOK () from another thread

    Dec 19, 2017 · I am implementing a MFC dialog that runs a task in background and shows its progression. When the task is completed, the thread (created with a standard std::thread) closes the …

  5. Having trouble compiling a project....errors appearing ws2def.h and ...

    I have been working with the Torque Game Engine, and have been trying to link it with libcurl. I got this working fine in OS X, and libcurl is building fine under Windows (I'm using Visual C++ Express 2008), …

  6. Efficiency of C++ - social.msdn.microsoft.com

    Jul 8, 2012 · A native C++ program that uses static linking (/MT compiler flag) may be larger because it contains its own copy of needed C/C++ library functions. If you use dynamic linking (/MD compiler …

  7. Plotting in visual c++ - social.msdn.microsoft.com

    Mar 6, 2009 · I was searching around for plotting solutions in Visual C++, and found this thread... Assuming I will go for C++/CLI and winforms, what functions/classes are available to do a time-value …

  8. C++ and WCF - social.msdn.microsoft.com

    Nov 8, 2013 · Anyway, can I use C++/CLI to write the service contract and implementation for a WCF service and can I host it in a standard already existing NT Service? If yes are there any online …

  9. Native C++ Win32/API TextOut function - social.msdn.microsoft.com

    Jul 14, 2007 · If you just wish to set the text within an editbox there's no need to call TextOut. If you're using the MFC, just call the appropriate CEdit member function. If you're using the plain win32 api, …

  10. Integer data types sizes for 64bit C++ compiler

    Jun 19, 2008 · The question is - what would be the sizes in 64-bit Microsoft C/C++ compiler and 64-bit Microsoft C# compiler? For 64-bit C/C++ compiler, would 'int' be 32 or 64 ?