Using Visual Studio C++ Express Ron Gross A current copy of this can be found at or this direct linkhttp://tinyurl.com/2ucarothis.

Slides:



Advertisements
Similar presentations
CS 450 MPX P ROJECT Introduction to Turbo C. W HY USE T URBO C? Many ANSI C compilers are available for free, however they lack certain features that.
Advertisements

Adding a Crystal Report to M3 This presentation will assist you in adding a custom Crystal report into Millennium 3.
Makefiles. makefiles Problem: You are working on one part of a large programming project (e. g., MS Word).  It consists of hundreds of individual.c files.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Using a Template to Create a Resume and Sharing a Finished Document
Guide to Oracle10G1 Introduction To Forms Builder Chapter 5.
C Pre-Course Workshop Terence Lee QT406 -> PQ607
CA 121 Intro to Programming Tariq Aziz and Kevin Jones GUI Programming in Visual Studio.NET Chapter 1 Tariq Aziz and Kevin Jones.
Templates. January 6, Step 1: Activity Template An activity is a task that requires a single submission. Multiple activities may be combined into.
Adding a Syllabus Link. Let’s add the syllabus to the homepage. Return to the homepage Click “Add File” To get to the homepage, click the Course Content.
CS 1400 Using Microsoft Visual Studio 2005 if you don’t have the appropriate appendix.
Compunet Corporation Programming with Visual Basic.NET GUI Week # 11 Tariq Ibn Aziz.
Course Introduction and Getting Started with C 1 USF - COP C for Engineers Summer 2008.
Using Visual C++ and Pelles C
Creating a Portfolio folder Learning Technologies UWB.
Introduction to ArcGIS Add-Ins Exercises GIS/LIS Conference, 2014 Rochester, MN.
IS 426: Information Systems Construction in Modern Society Downloading and exploring oracle development environments.
1 After completing this lesson, you will be able to: View and open folders. Open, edit, and save files. Print files. Sort files. (continued)
CHAPTER 1 XNA Game Studio 4.0. Your First Project A computer game is not just a program—it is also lots of other bits and pieces that make playing the.
1 ENG236: ENG236: C++ Programming Environment (2) Rocky K. C. Chang THE HONG KONG POLYTECHNIC UNIVERSITY.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Introduction to VB.NET Tonga Institute of Higher Education.
Using Visual Studio 2013 An Integrated Development Environment (IDE)
IT 211 Project Integration and Deployment Lab #11.
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
Keith Elder Microsoft MVP
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
C O M P U T E R G R A P H I C S Jie chen Computer graphic -- OpenGL Howto.
LLRP GUI Client User Guide
MIS 3200 – C# (C Sharp)
A1 Visual C++.NET Intro Programming in C++ Computer Science Dept Va Tech August, 2002 © Barnette ND & McQuain WD 1 Quick Introduction The following.
Introduction In The Name Of Allah, The Beneficent, The Merciful.
Mohammadreza Asghari Oskoei University of Allameh 2012 Introduction to Visual Studio 2010.
Active-HDL Interfaces Debugging C Code Course 10.
Lecture Set 2 Part A: Creating an Application with Visual Studio – Solutions, Projects, Files.
VB – Debugging Tools Appendix D. Why do we need debugging? Every program has errors, and the process of finding these errors is debugging Types of errors.
Programming with Visual C++ A short review of the process.
PDA Program Install Manual IT Team. 1. Execute Internet Explorer 2. Connect Website 3. Download 4. Installation 5. Run 6. Setting 1. Execute.
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:
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 8 Debugging, Creating Executable Files, and Distributing a Windows Application.
Chapter 10 Chapter 10: Managing the Distributed File System, Disk Quotas, and Software Installation.
1 of 5 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
Information and Communication Technology Sayed Mahbub Hasan Amiri Dhaka Residential Model College Higher Secondary.
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
Introduction to MVC Introduction NTPCUG Tom Perkins, Ph.D.
PowerPoint Skills. Inserting Clip Art 1. Make sure your slide layout contains at least one content placeholder 2. Click the Clip Art icon and select an.
MySQL Getting Started BCIS 3680 Enterprise Programming.
Lab00-Getting Started with VC Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.
Lecture Set 2 Part A: Creating an Application with Visual Studio – Solutions, Projects, Files 8/10/ :35 PM.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Downloading a Visual C compilers (try it yourself at home) Visual Studio 2012 can be found at:
Active-HDL Server Farm Course 11. All materials updated on: September 30, 2004 Outline 1.Introduction 2.Advantages 3.Requirements 4.Installation 5.Architecture.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
Template Package  Presented by G.Nagaraju.  What is Template Package?  Why we use Template Package?  Where we use Template Package?  How we create.
Unit 9 Seminar. Starting Reporting Services Reporting Service Started.
Chapter 5 Using a Template to Create a Resume and Sharing a Finished Document Microsoft Word 2013.
MIS 3200 – C# (C Sharp)
Chapter 2: The Visual Studio .NET Development Environment
Quick Start Guide for Visual Studio 2010
1. Open Visual Studio 2008.
Starting a project in VisualDSP++
Double click Microsoft Visual Studio 2010 on the Computer Desktop
Finishing Up.
How to Create your First Program
How To Repair Outlook Express Inbox.dbx File After Crash.
Presentation transcript:

Using Visual Studio C++ Express Ron Gross A current copy of this can be found at or this direct linkhttp://tinyurl.com/2ucarothis direct link Last Modified at 12/7/2015

Prerequisite Installed Visual Studio (see the separate installation guide on the course website)

Run Lola Run

Understanding Projects In this course, a Project or Solution is a set of files that will compile into a single executable (.exe) file. A project can contain multiple files compiled together. In this course, every project will contain only one.c file (“ex.c”). Projects are mandatory even when they contain only one file.

Creating A Project

Project Options

More Project Options

Clean Up

Adding A File

File Options Note the “.c” extension

Common Error Solutions: –Find and delete the file on disk –Add Existing Item

Even More Options

Debug/Release Don’t play with this, options are different for Debug/Release

Entering A Program

Auto-Completion Activated by CTRL-Space

Compiling / Building

Build Errors

Build Warnings

Running

Basic Debugging Step Over (F10) – execute a line Step Into (F11) – enter a function Step Out (Shift-F11) – exit a function Continue (Start Debugging) – F5

Debugging Over the Edge The compiler warns you when you try to debug “after the end of the program”. Just press OK and F5 to finish the run.

Advanced Debugging Add/Remove Break Point – F9 Edit & Continue – allows modification while the program is running.

Watches Manual Value Modification Locals

Opening Existing Solutions We open solutions (“foo.sln”) and not the C files directly. Either double-click from Explorer or File  Open  Project/Solution

A Ready Made Solution mplate.ziphttp:// mplate.zip Copy into a fresh folder Rename all “template” to whatever you want: –In File Names –In File Contents

Questions ?