Showing category results for C++

Apr 23, 2008
Post comments count0
Post likes count0

Get a feel for the new MFC features using samples

Visual CPP Team

Hello, everyone. This is Jessica Liu. I’m an SDET on the VC Libraries team. During the past few months, I have spent most of my working hours on testing the new MFC components. Now the Visual C++ 2008 Feature Pack has been released. This update is not going to cost you one cent if you already have Visual Studio 2008 RTM installed. But porting your...

C++
Apr 22, 2008
Post comments count0
Post likes count0

Visual C++ 2008 Feature Pack Refresh

Visual CPP Team

Per our previous announcement regarding the Feature Pack deployment & setup issues, we have subsequently released a refresh of the Visual C++ 2008 Feature Pack. You can obtain the refresh from http://www.microsoft.com/downloads/details.aspx?FamilyID=d466226b-8dab-445f-a7b4-448b326c48e7&displaylang=en. Here is a summary of the issues that we...

C++
Apr 18, 2008
Post comments count0
Post likes count0

WinSDK for SRV2008 and VS2008

Visual CPP Team

Some customers have reported issues with vcvars32.bat in VS2008 after installing the Windows Server 2008 SDK. Karin Meier from the WinSDK Team just posted a workaround at http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3204202&SiteID=1&mode=1 Thanks,Visual C++ Development Team

C++
Apr 12, 2008
Post comments count0
Post likes count0

Visual C++ 2008 Feature Pack Setup & Deployment Issues

Visual CPP Team

Unfortunately, a set of setup & deployment issues have been reported with the Visual C++ 2008 Feature Pack. Some of these are blocking issues and, as a result, we are currently working on a refresh of the Feature Pack.  In the interim, a list of the issues and their workarounds is provided below.  These issues will all be addressed via the refr...

C++
Apr 10, 2008
Post comments count0
Post likes count0

Channel 9 Video: Andy Ayers – Understanding the Phoenix Compiler Framework

Visual CPP Team

To celebrate the recent release of the next interim version of the Phoenix SDK (http://connect.microsoft.com/phoenix), we asked Charles to do another of his excellent Channel 9 videos on Phoenix (and it has been a little since the last Channel 9 video on Phoenix too.) Andy Ayers, an Architect on the Phoenix project, spent an hour talking about the ...

C++
Apr 7, 2008
Post comments count0
Post likes count0

MFC Update Powered by BCGSoft

Visual CPP Team

Late last year, the Visual C++ team announced that we would focus more squarely on native code development. One of the areas highlighted in that message was renewed investment in native libraries. We’re pleased, then, to announce the release of the Visual C++ 2008 Feature Pack!  The Feature Pack is a freely available download to any...

C++
Apr 7, 2008
Post comments count0
Post likes count0

Visual C++ 2008 Feature Pack Released!

Visual CPP Team

The final release of the Visual C++ 2008 Feature Pack is now available for download.  This release provides several exciting features for C++ developers, such as a major update to MFC and an implementation of TR1.  These features are fully covered under Microsoft’s standard support policies.   The Feature Pack is available...

C++
Mar 20, 2008
Post comments count0
Post likes count0

Protecting Your Code with Visual C++ Defenses by Michael Howard

Visual CPP Team

The March 2008 issue of MSDN Magazine includes a nice article about protecting your C/C++ programs. You can check out the article at http://msdn2.microsoft.com/en-us/magazine/cc337897.aspx.Thanks,Visual C++ Team

C++
Mar 10, 2008
Post comments count0
Post likes count0

Visual Studio 2008 Enum Bit Flags Visualization

Visual CPP Team

In Visual Studio 2008 we introduced a useful, but not very well known, feature in the Native Debugger for visualizing enum bit flags. Consider the following code: enum x { bit_none = 0,       bit1 = 1,       bit2 = (1 << 1),       bit3 = (1 << 2),...

C++
Mar 6, 2008
Post comments count0
Post likes count0

Approaches to Testing

Visual CPP Team

My name is Martha Wieczorek and I’m a Software Design Engineer in Test on the Visual C++ IDE team. I would like to share with you some different testing approaches that we use on the team and talk about the advantages/disadvantages of each approach based on my experience. Testing effectively and efficiently becomes more and more challeng...

C++