LAB#1 CSC1101 1 st semster 1431-1432 H King Saud University College of Applied studies and Community Service Csc 1101.

Slides:



Advertisements
Similar presentations
Information System Design Lab 5&6. User Interface Design.
Advertisements

Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
1 CSCI N305 C Language Programming Welcome to CSCI N305! Compiling Your First Program Using Microsoft Visual Studio 2008.
C Pre-Course Workshop Terence Lee QT406 -> PQ607
CS 1400 Using Microsoft Visual Studio 2005 if you don’t have the appropriate appendix.
A Visual Introduction to PC SAS. Start SAS by double-clicking on the SAS icon...
Using Visual C++ and Pelles C
Tutorial on Visual Studio express Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
1 ENG236: ENG236: C++ Programming Environment (2) Rocky K. C. Chang THE HONG KONG POLYTECHNIC UNIVERSITY.
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
 The BPEL Module project is a group of source files which includes BPEL files, WSDL files, and XML schema files. Within a BPEL Module project, you can.
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.
Computer Programming for Engineers Introduction to Programming in C Language on Visual C Platform Intro. Comp. Prog. C-Language1.
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 to Windows7
Creating a Project with C++ Builder
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
CS 450: COMPUTER GRAPHICS INSTALLING GLUT AND GLEW SPRING 2015 DR. MICHAEL J. REALE.
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
CIS 338: Using Queries in Access as a RecordSource Dr. Ralph D. Westfall May, 2011.
Project Deployment IT [211 CAP] How to convert your project to a full application.
1 NORMA Lab. 7 Generating Reports More Display Options File: NORMA_Lab6.ppt. Author: T. Halpin. Last updated: 2009 June 9.
Creating Projects in JCreator Computer Science 40S.
Programming with Visual C++ A short review of the process.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Chapter 3 The Visual Basic Editor. Important Features of the VBE Alt-F11 will open the Visual Basic Editor. The Code window is to the right, Project Explorer.
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
N from what language did C++ originate? n what’s input, output device? n what’s main memory, memory location, memory address? n what’s a program, data?
Dr. Gina Green Class Setup.
Programming with Visual Studio.NET A short review of the process.
Information and Communication Technology Sayed Mahbub Hasan Amiri Dhaka Residential Model College Higher Secondary.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
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.
Information Security 493. Lab 10.1: Look for Security Events within Windows XP Logging is automatically enabled for many items on a workstation, but the.
1 Programming Environment and Tools VS.Net 2012 First project MSDN Library.
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.
How to Back Up In 10 Easy Steps. Step 1: Double click on My computer. You should see something like this. WatchWatch.
Lab00-Getting Started with VC Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.
TUTORIAL #3 INFORMATION SECURITY : LOOK FOR SECURITY EVENTS WITHIN WINDOWS XP Logging is automatically enabled for many items on a workstation,
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.
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.
Connecting to the eTeacher FTP on Win XP eTeacherGroup 2010.
“Successful Uses of HTML Computer Code” Shannon Harwell.
Creating a Web Site Creating a new Web site Defining and using folders Creating and editing Web pages Viewing pages in a Web browser.
How to install JavaCV in Eclipse. Make sure to download and install all these before you proceed Eclipse for Java EE developers (current is Juno)
McGraw-Hill/Irwin The Interactive Computing Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Excel 2002 Using Macros Lesson.
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
Computer Terms Review from what language did C++ originate?
Visual programming Chapter 1: Introduction
Creating your first C++ program using Visual Studio 2010
Quick Start Guide for Visual Studio 2010
How to Import an Excel File
Module 6: Creating Web Pages and Working with Channels
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++.
Creating Your First C Program Using Visual Studio 2010
Our Environment We will exercise on Microsoft Visual C++ v.6
Creating Your First C Program Using Visual Studio 2010
Double click Microsoft Visual Studio 2010 on the Computer Desktop
Software Setup & Validation
ㅎㅎ First Step for Learning C++ Programming
Computer Terms Review from what language did C++ originate?
CSCE 206 Lab Structured Programming in C
Presentation transcript:

LAB#1 CSC st semster H King Saud University College of Applied studies and Community Service Csc 1101

Start Microsoft Visual Studio  Start → All Programs → Microsoft Visual Studio 2005 → Microsoft Visual Studio 2005

3 Starting for the first time  The first time you run MSVS, you might get a window like this.  Use General Development Settings if you have no preference.

4 Initial MSVS Dialog  Here is an image of the initial MSVS Dialog.

5 Opening a New Project  Open a project using File → New → Project…

6  Choose a Visual C++ Win32 Project Type  Choose Win32 Console Application  Enter a name for your project. Choose a Project Type and Name

Project Settings ä Choose Next > from the initial dialog.

8 Project Settings (continued)  Be sure to select Empty project and Finish.

9 Add a New Item  Right-click on Source File and Add a New Item.

10 Create a main.c  Choose Visual C++ Code, C++ File named main.c.

11 Enter your program into main.c  Enter a standard C program into main.c. You get to use your mouse, copy, paste, and everything!

12 Start your program  Select Debug → Start without Debugging.

13 Examine your output  Your program ran. Check it out!

14 Congratulations!  You created a new Microsoft Visual Studio 2005 Project.  Selected Visual C++ Win32 Console Application.  Created your own main.c file, entering code just like in class.  And started your program to produce output/  All of this using an easy editor and never logging onto the internet.

Reference  1CompilingUnderMSVS.ppt 1CompilingUnderMSVS.ppt