Lab00-Getting Started with VC2005 1. Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.

Slides:



Advertisements
Similar presentations
Creating a Dialog-Based Comet Windows Program Brian Levantine.
Advertisements

1 CSCI N305 C Language Programming Welcome to CSCI N305! Compiling Your First Program Using Microsoft Visual Studio 2008.
Microsoft Expression Web-Illustrated Unit L: Using Code Tools.
BIM313 – Advanced Programming Techniques Debugging 1.
C Pre-Course Workshop Terence Lee QT406 -> PQ607
1 of 6 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
1 Lab Session-I CSIT120 Spring2001 Using Windows Using An Editor Using Visual C++ Using Compiler Writing and Running Programs Lab-1 continues (Session.
CS 1400 Using Microsoft Visual Studio 2005 if you don’t have the appropriate appendix.
1 Session-4 CSIT 121 Spring 2006 Debugging Tips Lab Work.
Using Visual C++ and Pelles C
CLEW Basics Lorie Stolarchuk Learning Technology Trainer Centre for Teaching and Learning 1.
How to Use The Borland C++ Compiler Version 5
Simple Computer Maintenance. Common Computer Clean up Tasks Disk Clean – up Anti-virus scan Deleting Cookies.
COMPREHENSIVE Excel Tutorial 8 Developing an Excel Application.
Tutorial on Visual Studio express Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
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.
Hello World In C++ and Microsoft Visual C++. Directions to begin a project 1. Go to All Programs 2. Open Visual Studio C++ 3. Click on New Project 4.
Computing IV Visual C Introduction with OpenCV Example Xinwen Fu.
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
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.
A1 Visual C++.NET Intro Programming in C++ Computer Science Dept Va Tech August, 2002 © Barnette ND & McQuain WD 1 Quick Introduction The following.
CPS120: Introduction to Computer Science Compiling Your Programs Using Visual C++
Introduction to the Visual Studio.NET IDE (LAB 1 )
Computer Science I How to Configure Visual Studio.NET 2003 for C++ Colin Goble.
ZONG Wen Department of Computer Science and Engineering The Chinese University of Hong Kong
Creating Projects in JCreator Computer Science 40S.
Programming with Visual C++ A short review of the process.
An Example of Windows Forms Applications Windows-based application –Win Forms Control structures (selection and repetition) Graphics Read integers from.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Programming with Visual Studio 2005.NET A short review of the process.
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
Programming with Visual Studio.NET A short review of the process.
CLEW Basics Lorie Stolarchuk Learning Technology Trainer Centre for Teaching and Learning 1.
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.
Jeremiah McNichols Partnership for Environmental Education and Rural Health PowerPoint Toolbar Creator Instructions and Foundation.
LAB#1 CSC st semster H King Saud University College of Applied studies and Community Service Csc 1101.
Using This PowerPoint This PowerPoint presentation assumes your Computer Science teacher has provided you with the InstallingJava folder, which contains.
1 How to Install OpenGL u Software running under Microsoft Windows makes extensive use of "dynamic link libraries." A dynamic link library (DLL) is a set.
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.
© I-Logix Rhapsody C++ V /01/2004E1-1 “Essential” Tool Training Basic Rhapsody Basic Rhapsody Rhapsody in C++ V /01/04.
Installing Microsoft C++ Microsoft Visual Studio 6.0.
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.
Open project in Microsoft Visual Studio → build program in “Release” mode.
The Program Editor1 Visual Basic (VB) supports a text editor (not a word processor) that permits the writing and modification of program code. The editor.
TEAM FOUNDATION VERSION CONTROL AN OVERVIEW AND WALKTHROUGH By: Michael Mallar.
Creating a Zip File with a Password. 1.Right Click on the File or Folder you want to Zip. 2.Choose “Add to Zip”
C Programming Lecture 3 : C Introduction 1 Lecture notes : courtesy of Woo Kyun and Chang Byung-Mo.
Microsoft Visual C# 2010 Fourth Edition Chapter 3 Using GUI Objects and the Visual Studio IDE.
get-back-bkf-files alexwaston14/file-repair-tool/ u/4/b/ pages/Bkffilerepairtool/
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
Tutorial 1 Writing Your First C++ Program CSC1110C Introduction to Computer Programming By Paul Pun Acknowledgement: Special thanks to Dr. Michael Fung.
DEVRY CIS 170 C I L AB 1 OF 7 G ETTING S TARTED Check this A+ tutorial guideline at
Excel Tutorial 8 Developing an Excel Application
Chapter 2: The Visual Studio .NET Development Environment
Getting Eclipse for C/C++ Development
How to Change a Microsoft Word Document to a PDF Fillable Form!
Quick Start Guide for Visual Studio 2010
Lab 1 Introduction to C++.
Open Visual Studio, (insts here are from VS2015)
1. Open Visual Studio 2008.
ms vısual studıo 2008-Introductıon TUTORIAL
Lab 1 Introduction to C++.
Lab 1: Getting started ICE0125 Programming Fundamentals II – C/C++
Double click Microsoft Visual Studio 2010 on the Computer Desktop
Getting Eclipse for C/C++ Development
ECE 3567 Microcontrollers Lab
Presentation transcript:

Lab00-Getting Started with VC2005 1

Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual Studio 2005 – Select C++ Environment 2

Create Project - MyProject New Project – Create: Project Existing Project – Open: Project 3

1) Make sure it is Visual C++ 2) Select Win32 3) Select Win32 Console Application 4) Enter project name MyProject 5) Enter location 6) OK 4

1) Select Console application 2) Select Empty Project 3) Finish 1) Next 5

Create a.c file in MyProject 6 Right-click

7 2) Select C++ File 3) Enter file name, e.g.: Lab1 – avoid space or. (dot) 4) Don’t change the location – the file will be kept in your project location 1) Make sure it is Visual C++

8 Editor File and Class Information Message Window: Compilation and Error Message

Write this code in Lab1.cpp 9

Compile (Ctrl+F7) - compiling 10

Check the Message Window 11

If no error, Build Solution (F7) - Linking. 12

13 Check the Message Window

If no error, run your program (Ctrl+F5) 14

Dealing with Compilation Error 15 1) Double click the first error 2) Arrow indicating line of error Total no of error Line number If you copy code from Ms Word, and paste it in Visual C don’t forget to type again the quote symbol

Show line number in VS 16 Tools > Options Expand “Text Editor” > Select “C/C++” > Check Line numbers checkbox > OK It is better to show line number. Easy for the lecturer to guide you where is the location of the error by focusing on the line number

Detach a file from workspace 17 Do not compile if there are more than 1.c files listed in Source Files You need to remove the all file(s) except the file that you want to compile

Attach an existing file from workspace 18