Click on the Start Icon. Click on All Programs

Similar documents
Engr 123 Spring 2018 Notes on Visual Studio

Getting Started with Visual Studio

COGNOS REPORTNET TO SIGN IN: Logon to eschoolplus On the LEFT SIDE you will see COGNOS REPORTING CLICK on that

How to set up an Amazon Work Profile for Windows 8

Instruction: Download and Install R and RStudio

Windows 2000 Safe Mode

BRIEFCASES & TASKS ZIMBRA. Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases.

ECE2049 Embedded Computing in Engineering Design. Lab #0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio

Organising your inbox

Introduction. Key features and lab exercises to familiarize new users to the Visual environment

Introduction to Unix - Lab Exercise 0

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

Backup then Download Data file

1) Log on to the computer using your PU net ID and password.

How to make a Work Profile for Windows 10

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks

Where Did My Files Go? How to find your files using Windows 10

Tutorial NetOp School

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003

Getting Started with Python and the PyCharm IDE

Linux Tutorial #1. Introduction. Login to a remote Linux machine. Using vim to create and edit C++ programs

Installing and Using Dev-C++

Windows Me Navigating

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010

Installing and configuring an Android device emulator. EntwicklerCamp 2012

Lab 3-2: Exploring the Heap

PISCES Installation and Getting Started 1

Working with Images 1 / 12

Debugging in AVR32 Studio

Lab 4: Introduction to Programming

Download Keepass from select Professional Edition

Installing Office 365 Desktop Apps on Windows

Click the +Assignments button. Depending on how you add your assignment, this step may look a little different. Enter your assignment information.

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

Eclipse Setup. Opening Eclipse. Setting Up Eclipse for CS15

How to Archive s in Outlook 2007

Click the Options link in the upper right corner of the Outlook Web Access window (see illustration below).

Designing Your Teacher Page. Medora Community School Corporation

Internet Explorer 11 Settings

Webmail: Basics. Folders:

To complete this project, you will need the following folder:

Scientific Visualization A Programming Guide using Fltk and Visual Studio

1. Enter the Order Number in the smartdocs search field, then press the Enter key on your keyboard while the cursor is still blinking in the field.

Assignment 1. Application Development

Writing and Running Programs

Table of Contents. NSCS01 Procedure Illustrations

Using Expressions Web to Edit an FCNet Department Web Site

The Paperless Classroom with Google Docs by - Eric Curts

CCH INCORPORATED 05/03

2 Getting Started. Getting Started (v1.8.6) 3/5/2007

F28069 ControlCard Lab1

Technical Bulletin DS2

Using Respondus with D2L

Lab - Create a Partition in Windows 8

Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio

UNINSTALL THE BPR FOR WIN-Rev2.bprm

AP Computer Science A Summer Assignment

Visual Barcode Control

Setting up PyCharm Professional

Required Setup for 32-bit Applications

CS1110 Lab 1 (Jan 27-28, 2015)

Click on the GradeMark icon for the paper where the comment is to be added (see illustration below).

MS Visual Studio.Net 2008 Tutorial

IT Essentials v6.0 Windows 10 Software Labs

Submitting Assignments

Installing VPN client by Jupiter Networks:

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module.

SofTest v11 Exam Instructions

Introduction to Computation and Problem Solving

CDC-ACM Driver for Windows Installation Guide

Flash Video Encoder CS3 Fetch Microsoft Office 2004 (Excel, imovie. Powerpoint, Word, Entourage) itunes

MBMimic for ios. 10. Chat with the Mountbatten user using the Chat application

For those working on setting up Super Star Online for the school year, here are a few tips:

FILE SHARING OVERVIEW HOW DO I ACCESS FILE SHARING? NAVIGATION

PRELAB! Read the entire lab, and complete the prelab questions (Q1- Q3) on the answer sheet before coming to the laboratory.

WRITING CONSOLE APPLICATIONS IN C

PSIM Tutorial. How to Use SimCoder with TI F28335 Target Powersim Inc.

Homework #1: SSH. Step 1: From the start button (lower left hand corner) type Secure. Then click on the Secure Shell File Transfer Client.


Lab - Monitor and Manage System Resources in Windows 7 and Vista

The QuickCalc BASIC User Interface

9.4 Authentication Server

CAL 9-2: Café Soylent Green Chapter 12

Computer Essentials Session 1 Lesson Plan

CSCU9B2 Practical 1: Introduction to HTML 5

Set Up Wi-Fi WCSD WCSD

CONTENT. 1.0 Introduction Downloading and installing the software Running the software Using the software 7

CESecure Quick Start Guide

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s)

Creating Smart Views in Blackboard -A tutorial for UH College of Education faculty and/or staff

Outlook Web Access. In the next step, enter your address and password to gain access to your Outlook Web Access account.

Here Comes The Bus. Downloading The App Download the app from Google Play Store or from the Apple App Store

Café Soylent Green Chapter 12

San Diego Unified School District AT0001-Good Attendance Means Everything

Blackboard Learn: Basics

Customizing DAZ Studio

Gain Remote Access to Your Work Computer

Lesson 1 Excel Tutorial Learning how to use Microsoft Excel 2010 page 1

Transcription:

Click on the Start Icon Click on All Programs

Scroll down to a point where the Microsoft Visual Studio 2013 folder appears. Click on the Microsoft Visual Studio 2013 folder.

Click on Visual Studio 2013 Click on Not now, maybe later.

Click on Start Visual Studio

The first time that Visual Studio 2013 is run on the computer, it does take a while to get things going. Eventually, something like the following appears:

Click on File, then New NOTE: New is in the Drop-Down selection set when you click on File. It appears to the left of what you can see here. Trust me! Then click on Project

Click the down arrow next to Visual Basic. Then click the right arrow next to Visual C++. Then click on the General option.

Click on Empty Project. Click on the box next to Create directory for solution to make sure that it is NOT CHECKED. This is very important. Click on the Location text box, and type in C:\Student.

Now click on the Name text box, and enter the name of your project. The name of the project will be composed of your last name, first initial, then Pgm00. Example: If Salma Hayek were creating the project, the project name would be HayekSPgm00.

After you put in your project name, click on OK. Now click on the menu item PROJECT, then Add new item.

In the Name text box, enter the same name you used for the project.

Now click on Add. Please note that the system automatically added the.cpp to the name of the file for you. This is a text editor that allows you to enter your C++ code. I will add some code to the HayekSPgm00.cpp file.

Once you have entered the corresponding code, substituting your name for that of Salma Hayek, click on the menu item BUILD, then Rebuild Solution. Hopefully you will get something that looks like the following: This means that there were no syntactical errors in your code. To see if it actually works, hit the F5 button on your keyboard to run the program.

As you can see, a Command Prompt window opened up, and in this case, it looks like the program did what the programmer wanted it to do. So, follow the instructions, and hit enter to exit the program. Unless something clearly went wrong in the execution of the program, you may ignore all of the nonsense that appears in the Output window. When things do go wrong in the running of your code, most of the time there will be very helpful information provided by the Visual Studio 2013 IDE that will aid you in debugging your code. OK, now that we are done for the day, we want to save our project to our flash drive. The first this we need to do is exit Visual Studio 2013.

The easiest thing to do is to click on the X in the upper right corner. After that, open up Windows Explorer, and go to the Student directory. We see the HayekSPgm00 directory that the IDE created for us. Open up that directory.

There are two things that are not necessary for us to save, the Debug directory, and the file HayekSPgm00.sdf. And, since these two things occupy a great deal of space, it is a VERY GOOD IDEA to delete them before saving the project directory. So, I will delete them. Now, I will copy the HayekSPgm00 directory and paste it to my flash drive.

After verifying that I have copied the information successfully to my flash drive, I will delete the directory from the ECC computer I have been using. You should NEVER leave any of your code on any of the school computers. If another student copies your code and turns it in as their own, the result will be that both of you will receive a grade of F for the assignment.

Much of the time, when the lab period has ended, you will not have completed the project you are currently working on. You will save all of the changes you have made to your project. You will exit Visual Studio 2013. You will save the project to your flash drive, verifying that the save was successful. You will delete the project the project from the school computer. You are done for the day. Now, the next day has arrived, and you want to continue working on your project. The first step will be to copy your project from your flash drive to the Student directory on the school computer. The process you will use to open up the project in Visual Studio 2013 will now be very quick. All you need to do is double-click your file that corresponds to the file HayekSPgm00.sln, and get:

Now you may begin to work on the project again!