+ All Categories
Home > Documents > Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line...

Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line...

Date post: 24-Dec-2015
Category:
Upload: maximilian-hawkins
View: 225 times
Download: 0 times
Share this document with a friend
Popular Tags:
29
Tutorial on Visual Studio express 2010
Transcript
Page 1: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

Tutorial on Visual Studio express 2010

Page 2: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

Introduction• Visual Studio Express Editions are a new line of Microsoft development Tools.

• This line of products is an expansion of the Microsoft Visual Studio and SQL Server products.

• Lightweight but powerful tools for programmers

• Basic users are beginners students and hobbyist

• Very easy to learn and use.

• Express products are:– Visual Web Developer 2010 Express Edition– Visual Basic 2010 Express Edition– Visual C# 2010 Express Edition– Visual C++ 2010 Express Edition– Visual J# 2010 Express Edition– SQL Server 2010 Express Edition

• Can develop windows applications, consol applications , reusable components.

Page 3: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

STEPS FOR INSTALLATION

Page 4: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

Step 1.

First, if you haven't already, download Microsoft Visual C++ Studio 2010 Express Edition for free at

http://www.microsoft.com/express/Downloads/#2010-Visual-CPP

This download may take a while to install.

Page 5: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 6: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

12

Page 7: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

This is after you download the software

Page 8: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

Step 2.

Double click on the saved vcssetup2010.exe file to start the installation process

.

Page 9: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 10: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 11: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 12: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 13: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 14: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 15: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 16: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 17: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

Step 3.

In Visual C++, select "File Menu-->New-->Project" (as shown).

Page 18: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 19: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

Step 4.

In the dialog box that pops up, click on "Win32" in the side pane and select "Win32 Console Application."

Make sure that the "Create Directory for Solution" box is NOT checked and leave the default path the same

Page 20: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

1

2

3

Page 21: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

2

1

3

Page 22: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

This is add a new item i.e.A new progam.cpp

Page 23: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

1

2

3

Page 24: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

After you create a new .cpp file and name it you will see the file in such manner on your screen

A blank page is created

Also note the * mark after the name addition.cppThe file is not saved.

Page 25: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

1] Write a sample program and Then don’t forget to save it.

2] When you save it the ‘*’ mark above the adittion.cpp goes away.

3] If you find an ‘*’ mark it means the program is not saved

Page 26: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 27: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

1] On successful build we get the Following result. ( 1 succeeded )

2] If you get the result (1 failed) . It means there are some errors in your program

3] Also if you edit your program and compile it without saving the program then it will the run the last program which was saved. So Don’t forget to save the program after you edit the program.

Page 28: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
Page 29: Tutorial on Visual Studio express 2010. Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.

Recommended