Creating the First Program

Slides:



Advertisements
Similar presentations
Introduction to Eclipse. Start Eclipse Click and then click Eclipse from the menu: Or open a shell and type eclipse after the prompt.
Advertisements

1 After completing this lesson, you will be able to: Create a database. Create a table using the Table Wizard. Create and modify a table in Design view.
MS Access 2003 Tutorial By: Juan GUANTENG!!! Y7. Step 1 Launch the Microsoft Access 2003 program. This can be done by clicking an icon on the desktop.
Copyright  Oracle Corporation, All rights reserved. 1 Creating an Application: The AppBuilder for Java IDE.
Microsoft Excel 2003 To start Excel, click the start button. A slightly different procedure might be required for computers on a network. If you need assistance,
FIRST COURSE Getting Started with Microsoft Office 2007.
1 Visual Basic.NET Application Overview. 2 Objectives Discuss what a typical Visual Basic.NET application looks like Configure the Visual Studio.NET Integrated.
FIRST COURSE Getting Started with Microsoft Office 2007.
1 Introduction to the Visual Studio.NET IDE Powerpoint slides modified from Deitel & Deitel.
Go to the Roseville City School District Website and pull down the Employees menu. Then click Online Services. Scroll down until you see Global Scholar-
A1 Visual C++.NET Intro Programming in C++ Computer Science Dept Va Tech August, 2002 © Barnette ND & McQuain WD 1 Quick Introduction The following.
Creating a Project with C++ Builder
Introduction to Computers and Windows. Overview  What is a computer?  What is an operating system?  Starting and Shutting Down a computer  The mouse.
1 Chapter 1 Introduction to Java. 2 History of Java Java Originally for _________________________ devices Then used for creating Web pages with __________________________.
Playing Back Scripts In HP LoadRunner >>>>>>>>>>>>>>>>>>>>>>
Lecture 6: Computer Languages. Programming Environments (IDE) COS120 Software Development Using C++ AUBG, COS dept.
Computer Science I How to Configure Visual Studio.NET 2003 for C++ Colin Goble.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
Chapter 2 – Introduction to the Visual Studio .NET IDE
FIRST COURSE Getting Started with Microsoft Office 2007 COM111 Introduction to Computer Applications.
Instructions.  Open up the letter that Adam has given to you  Format it so it look professional.
CS320n –Visual Programming More LabVIEW Foundations.
1 Microsoft Project 2003 Starting a New Project. 2 Creating a new project plan To start Microsoft Project, click the Windows Start menu. Point to All.
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
Introduction to Eclipse Programming with an Integrated Development Environment.
© I-Logix Rhapsody C++ V /01/2004E1-1 “Essential” Tool Training Basic Rhapsody Basic Rhapsody Rhapsody in C++ V /01/04.
1 After completing this lesson, you will be able to: Use a Word template. Create a template. Use a wizard to create a document.
 2002 Prentice Hall. All rights reserved. 1 Introduction to the Visual Studio.NET IDE Outline Introduction Visual Studio.NET Integrated Development Environment.
1 1 1 Introduction to Java. 2 History of Java Java – Originally for intelligent consumer-electronic devices – Then used for creating Web pages with dynamic.
1 Using an Integrated Development Environment. Integrated Development Environments An Integrated Development Environment, or IDE, permits you to edit,
COMPREHENSIVE Getting Started with Microsoft Office 2007.
Tutorial 1 Writing Your First C++ Program CSC1110C Introduction to Computer Programming By Paul Pun Acknowledgement: Special thanks to Dr. Michael Fung.
Author: Loh Jianxiong Christopher Contributions: Chua Jie Sheng, Li Mengran, Peh Shao Hong, Oo Theong Siang, Tong Chun Kit, Tania Chattopadhyay.
DEVRY CIS 170 C I L AB 1 OF 7 G ETTING S TARTED Check this A+ tutorial guideline at
DEVRY CIS 170 C I L AB 2 OF 7 D ECISIONS Check this A+ tutorial guideline at decisions For.
Dive Into® Visual Basic 2010 Express
Word Lesson 1 Microsoft Word Basics
Visual Basic .NET BASICS
Getting Started with Microsoft Office 2007
Chapter 2: The Visual Studio .NET Development Environment
Getting Started with Application Software
Great way to learn is by example so fire up Visual Studios C (at home make sure you custom install with C++ - no longer default) by Deborah R. Fowler.
International Computer Driving Licence Syllabus version 5.0
Microsoft Visual Basic 2005 BASICS
Chapter 1: An Introduction to Visual Basic 2015
International Computer Driving Licence Syllabus version 5.0
Chapter 2 – Introduction to the Visual Studio .NET IDE
Office 2010 and Windows 7: Essential Concepts and Skills
Getting Started with Microsoft Office 2010
Social Media And Global Computing Introduction to Visual Studio
Chapter 2 – Introduction to the Visual Studio .NET IDE
Understanding the Visual IDE
1. Open Visual Studio 2008.
Starting a project in VisualDSP++
Using JDeveloper.
Welcome to Intro to C/C++ CISC 192
Lab 1 Introduction to C++.
Adding Photo to Agent Profile
Creating and Sending Message Links
Double click Microsoft Visual Studio 2010 on the Computer Desktop
POS 408 Week 1 Individual Assignment Individual: Console Display Message//tutorfortune.com Click on below link to buy
Microsoft Windows 7 Basics
Wings 2.0 Business Flow Reference
Overview of the IDE Visual Studio .NET is Microsoft’s Integrated Development Environment (IDE) for creating, running and debugging programs (also.
Welcome to Intro to C/C++ CISC 192
Tutorial 8 Sharing, Integrating, and Analyzing Data
Chapter 2 part #1 C++ Program Structure
Presentation transcript:

Creating the First Program By: Ed Brunjes

Overview Boot Visual C++.NET Create a new Visual C++ project Modify the “skeleton application” Build the program Execute the program Save the project

The Starting Screen After booting Visual C++, the “Start Screen” appears. At the bottom of the screen a “New Project” tab should be clicked.

The New Project window Select Visual C++ Projects – in the left pane of the window. Click on “Win32 Console Project” in the right pane of the window In the bottom portion of the window, name the project and specify the location to which the project will be saved. It is easiest to use the “Browse” button for this.

The New Project window After selecting the “New Project” tab, The “New Project” window appears.

The Application Setting window Make sure the “Console application” option is selected. Click on “Finish”.

The Application Edit Screen The Win32 Application Wizard creates a skeleton of a program. In addition there are a number of additional windows on the screen. For now minimize the side windows to be able to maximize the edit window. Notice that as the side windows are closed the edit window expands.

The Edit window After maximizing the edit window – the skeleton of your first program is ready to be modified.

Creating “Hello World” After “#include “stdafx.h”, type #include<iostream> using namespace std; Inside of the braces, before “return 0;” type cout << “Hello World” << endl; Your program should look like the following:

The Program

Building the Program Select the Build option from the Menu Bar. Then Select Build Solution from the pull-down menu. Status messages will be displayed in the “Output Window” while the program is compiling. If any errors are encountered, they will be displayed in the “Task List Window”

Running the Program After the compile (build) is successful, the program can be executed Click Debug form the menu bar Select Start Without Debugging A text window will open and the results of the program will be displayed. To close the window simply press any key.

“Save Early, Save Often” Saving Your Project “Save Early, Save Often” It is really important that you save your work often. This is the only safe-guard against loosing your work to an accident. The easiest way is to either click on the “Save All” icon or to select “Save All” from the File option on the Menu bar.

Accessing an Existing Project Use the Start Page of the Visual C++ IDE. The page displays recent projects. Click on the project name. An existing project can be accessed using the “Open” option from File on the menu bar.