Original Post
Creating and Building a Project w/ VC++ .NET 2005
The instructions for creating a project/file in the book on pages 19-20 are for Visual C++ 6. Visual C++ .NET 2005 is actually version 8. The correct approach for .NET 2005 is: Step 1: Create an empty project- File->New->Project
- Select 'Win32' from Project types
- Select 'Win32 Console Application' from the Templates
- Type the name of the project and the location in the edit box near the bottom.
- Click OK
- When the dialog box appears click on "Application Settings" on the left
- Click "Empty Project" under Additional options.
- Click Finish
- Right click on your project in the Solution Explorer
- Add->New Item
- Click Code in the Categories List
- Select either C++ File or Header File as appropriate to the task
- Type the name of the file in the edit box near the bottom.
- Click Add