Warsen,
Indeed you are correct. The instructions, as indicated on page 19, are for Visual C++ 6. Visual C++ 2005 is actually version 8. The earlier versions of C++, much like Dev-C++ didn't have as tight of integration with projects, and thus allowed you to add a file much more quickly, and without the need for a project at all.
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
Step 2: Add files to your project- 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
Building your executableFor solutions which only have a single project, Build Solution will do the same as "Build <projName>". Once you have solutions which are containers for multiple projects, you will need to choose either to build individual projects, or the whole solution.
I believe all of the tasks we will attempt in this workshop will require only a single project. As such, "Build Solution" should work just fine.
Cheers!
[Edited by - jwalsh on June 2, 2006 1:48:07 PM]