By Sean Michael Kerner
| Visual C++ Article Published 03-Nov-11
Open source client for MQTT protocol could open up the Internet of Things.
By Sean Michael Kerner
| Visual C++ Article Published 13-May-10
New open source Native Client SDK debuts for Chrome, bringing C and C++ to the Web. But is it just another form of vendor lock-in?
By Nick Wienholt
| Visual C++ Article Published 19-Oct-09
By leveraging Windows Error Reporting (WER), independent software vendors (ISVs) can use Microsofts existing infrastructure for providing end users with patches and workarounds, a critical aspect of the application life-cycle management.
By Nick Wienholt
| Visual C++ Article Published 02-Sep-09
Even the best-written C++ applications can crash or hangand end-users' perceptions of the application hinge on how gracefully the application works with the operating system to handle such problems. By registering your applications with Windows Application Recovery and Restart, they can recover gracefully after errors occur.
By Nick Wienholt
| Visual C++ Article Published 17-Aug-09
Correctly managing the release of heap-allocated memory and other resources has been one of the great challenges of C and C++ development for decades. The new shared_ptr class, shipping with Visual Studio 2008 SP1 and Visual Studio 2010, makes dealing with resource management dramatically simpler.
By Nick Wienholt
| Visual C++ Article Published 13-Jul-09
By adopting a messaging based approach to task parallelism, the Asynchronous Agents Library provides a simple model for concurrent programming that avoids the complexity of memory locks.
By Nick Wienholt
| Visual C++ Article Published 02-Jun-09
Visual C++ 2010 includes a number of new features for preventing data inconsistencies due to simultaneous updates of memory locationsa key challenge in parallel development.
By Nick Wienholt
| Visual C++ Article Published 11-May-09
Visual C++ 10.0's new Parallel Pattern Library supplies methods to execute multiple processing tasks, across available processing resources, eliminating the headache of manually allocating task execution.
By Nick Wienholt
| Visual C++ Article Published 10-Apr-09
Visual C++ 2010 with many of the new C++ 0x language features including Lambdas. Discover how lambda functions make C++ code easier to read and maintain, and explore the various techniques for writing them ships.
By Nick Wienholt
| Visual C++ Article Published 02-Mar-09
Visual C++ 2010 sees the integration of MSBuild with Visual C++. MSBuild is Microsoft's common build engine and one of its key design goals is the ability to support a high-degree of flexibility in customizing the build process. See how a custom MSBuild task can be built in Visual C++, and how the task can be used to customize the build process of other Visual C++ 2010 projects.
By Nick Wienholt
| Visual C++ Article Published 02-Feb-09
MSBuild is the build platform that Microsoft is using across all developer and related tools moving forward. Visual C++ is the last major compiler offering from Microsoft to move onto the MSBuild platform, with the Visual C++ 2010 release using MSBuild as its native project format. Explore the MSBuild basics from a C++ perspective, and see how it can improve your build process.
By Nick Wienholt
| Visual C++ Article Published 17-Dec-08
C++/CLI has a number of advanced features that make developing and maintaining applications easier. Discover how these allow types to be moved between assemblies without breaking existing application, allow fast and efficient interoperability between native functions, and make it possible to create functions that take a variable number of parameters while still maintaining type safety.
By Nick Wienholt
| Visual C++ Article Published 11-Nov-08
The Visual C++ compiler has a number of switches that control the generation of native and managed instructions within an executable image. Choosing the correct setting is an important consideration for application performance, deployment, and execution, as well as having implications about which development toolkits can be used.
By Nick Wienholt
| Visual C++ Article Published 06-Oct-08
Replacing the cumbersome and confusing Managed Extensions for C++ that shipped with Visual C++ 2002 and 2003, C++/CLI is a standardized set of C++ language extensions that allows developers to write managed code that executes on top of the .NET Framework.
By Nick Wienholt
| Visual C++ Article Published 08-Sep-08
Despite the best documentation, stepping into the actual source code of third-party libraries can be the fastest way to diagnose a difficult bug or determine the state that a component needs to be in before a certain operation can be completed. With a little set-up magic, developers can step into libraries quickly and easily.
By Nick Wienholt
| Visual C++ Article Published 06-Aug-08
Thread debugging can be one of the more difficult debugging exercises for a Visual C++ developer. The Visual Studio 2008 debugger contains a number of improvements that make thread debugging more productive, enabling code issues in multi-threaded applications to be identified and remedied faster.
By Nick Wienholt
| Visual C++ Article Published 08-Jul-08
Effective use of the Visual C++ debugger is one of the easiest ways to increase developer productivity. Program database (PDB) files are one of the key elements in effectively debugging an application, and it is easy to set up Visual Studio to use debug symbols for binary files produced by other developers, including those at Microsoft.
By Nick Wienholt
| Visual C++ Article Published 10-Jun-08
Code is run in a debugger for two main reasons: examining the branches of code that are being executed, and examining data values to determine why the code is behaving in a certain manner. Inspecting data values can be significantly improved by customizing the debug information. See how that can be done in the Visual C++ debugger.
By Nick Wienholt
| Visual C++ Article Published 12-May-08
The Visual C++ 2008 Feature Pack incorporates C++ language changes that move C++ closer to the upcoming C++0x standard. The new language elements build on the powerful features of the C++ language, and include support for regular expressions, function objects, and a number of new STL containers as well as many other new features. Review some of the new language features, and see how they can be incorporated into C++ applications.
By Nick Wienholt
| Visual C++ Article Published 04-Mar-08
For large and complex applications, dealing with the amount of data collected can be difficult. See how the Visual Studio Team System (VSTS) Developer Edition Profiler can do an excellent job of finding performance problems by simply pointing it at an application and allowing it to collect data.
By Nick Wienholt
| Visual C++ Article Published 05-Feb-08
Applications with great performance are a hallmark of C++ programming, and one of the best tools for achieving great application performance is a code profiler. Take a look at the Visual Studio Team System (VSTS) profiler, and see how it can be used to find code bottlenecks and improve performance.
By Nick Wienholt
| Visual C++ Article Published 09-Jan-08
Learn how to rapidly develop applications and add-ins using ATL for Windows CE.
By Nick Wienholt
| Visual C++ Article Published 10-Dec-07
Drill deeper into Mobile Development in C++ and go through the development and debugging of a Windows Mobile 6 application with a focus on MFC.
By Nick Wienholt
| Visual C++ Article Published 07-Nov-07
Try a no-embedded-background-needed introduction into developing Windows Mobile applications in C++. With comprehensive support for smart device development in Visual C++ and great device emulation features in the Windows Mobile SDKs, mobile development is well within the reach of all Visual C++ developers.
By Victor Volkman
| Visual C++ Article Published 31-Oct-07
C++0X is coming and with it are new object initialization features and better control over struct/class member alignment.