Showing results for January 2014 - C++ Team Blog

Jan 30, 2014
0
0

Windows Azure Storage Client Library for C++

Eric Battalio
Eric Battalio

The Windows Azure Storage team has announced the availability of a new Windows Azure Storage Client Library for C++. This is a preview release and they are looking for your feedback. This release includes support for blob, table, and queue storage abstractions and provides additional functionality such as retry logic, authentication, logging, and ...

C++
Jan 28, 2014
0
0

C++ in MSDN Magazine

Eric Battalio
Eric Battalio

Just in case you have forgotten to look at MSDN Magazine in the last few months, here are a few great articles from MVPs, Microsoft folks and other experts: All of the articles include sample code and often larger sample projects.Are these articles helpful? Let us know in the comments or email me at ebattali@microsoft.com...

C++
Jan 23, 2014
0
0

Examining stack traces of objects using Visual Studio 2013

Eric Battalio
Eric Battalio

It is quite common to have a program stopped in the debugger due to a crash or assertion caused by an object being in a bad state, and to track down the problem, you need to figure out how it got that way. In many cases, the call stack of the object's creation can provide valuable clues, but trying to get that call stack can be a significant chore...

C++
Jan 21, 2014
0
0

STL Resources on MSDN

Eric Battalio
Eric Battalio

Before reviewing the excellent standard template library resources on MSDN (including Channel 9), did you know Visual Studio 2013.1 (Update 1) is available now? Brian Harry writes about the release on his blog, mentioning that the release is smaller and focused on working better with IE versions prior to IE 10. It is worth a read. You can grab the ...

C++
Jan 16, 2014
0
0

Exception Boundaries

James McNellis
James McNellis

In modern C++, exceptions are the preferred method of runtime error reporting and handling. Yes, there are some cases where other forms of error reporting may be more appropriate—error codes, for example—but generally exceptions are preferred. When building a brand new library or application using C++, it's best to write exception-safe ...

C++
Jan 15, 2014
0
0

Creating a C++ Project from a PDB file: PDB Project [[Version 2.0]]

Eric Battalio
Eric Battalio

We are thrilled to announce version 2.0 of the PDB Project extension on the Visual Studio Gallery. PDB Project, as the name suggests, takes the information contained in a .pdb file to create a C++ project. The Information extracted from the .pdb includes both the source files (.c, .cpp) used for building, as well as the sources of the linked ...

C++
Jan 14, 2014
0
0

Kinect for Windows C++ Samples

Eric Battalio
Eric Battalio

Kinect for Windows enables developers like you to create applications that allow users to interact naturally with the computer by gesturing and speaking. You probably already know this. But did you know there are plenty of samples written in C++ using Direct 3D and Direct 2D and other DirectX stuff? Grab a Kinect and the Kinect SDK and build ...

C++
Jan 9, 2014
0
0

Code Debugging Content in Community

Eric Battalio
Eric Battalio

A few days ago, we called out some of the great debugging topics on the Microsoft Developer Network (MSDN) Library. Here are some excellent resources outside of the MSDN Library (in no particular order except the last one): If you know of additional resources, add them to the comments (or send them to me, ebattali@microsoft.com)&...

C++
Jan 7, 2014
0
0

Code Debugging Topics on MSDN

Eric Battalio
Eric Battalio

The MSDN Library is a rich source of information about Microsoft products and technologies including Visual Studio and Visual C++. This post calls out some of the great code debugging topics available for Visual C++ native code developers.The best starting point for (re)visiting debugging topics is the Debugger Roadmap. It contains links to many ...

C++
Jan 2, 2014
0
0

Weathr, a 3D Weather App now on CodePlex

Eric Battalio
Eric Battalio

Welcome to 2014. May all your C++ code run perfectly! Thomas Petchel wanted really to explore the intersection among C++, DirectX, and XAML in the context of a Windows Store app. The result? Weathr, a 3D weather app for windows 8.1. It is a smooth, responsive app that shows weather information for different locations. To run it, you need ...

C++