ZONG Wen Department of Computer Science and Engineering The Chinese University of Hong Kong

Slides:



Advertisements
Similar presentations
Code Composer Department of Electrical and Computer Engineering
Advertisements

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
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.
Visual C++.NET Hong Li. Introduction to.NET Microsoft announced in June 2000 Microsoft announced in June 2000 A new software –development model that allows.
CS 1400 Using Microsoft Visual Studio 2005 if you don’t have the appropriate appendix.
Using Visual C++ and Pelles C
The Required Software & How To Install it CS 242– Programming (1) 1.
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Tutorial on Visual Studio express Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
September 2008 IT Software Development Guide.
1 ENG236: ENG236: C++ Programming Environment (2) Rocky K. C. Chang THE HONG KONG POLYTECHNIC UNIVERSITY.
Programming with Microsoft Visual Basic 2012 Chapter 12: Web Applications.
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.
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.
ZONG Wen Department of Computer Science and Engineering The Chinese University of Hong Kong
Computer Programming for Engineers Introduction to Programming in C Language on Visual C Platform Intro. Comp. Prog. C-Language1.
C O M P U T E R G R A P H I C S Jie chen Computer graphic -- OpenGL Howto.
ZONG Wen Department of Computer Science and Engineering The Chinese University of Hong Kong
HelloApps.com What should I do first Young Joon Kim MSRDS First Beginner Course - STEP1.
Install and Setup VC++ and OpenGL Introduction to Computer Graphics and Animation (Principle of Computer Graphics) Rattapoom Waranusast.
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.
Introduction In The Name Of Allah, The Beneficent, The Merciful.
Introduction It is developed to create software applications. It is a tool for developers of any program that uses both basic and expert settings. It.
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 )
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?
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
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.
Introduction to MVC Introduction NTPCUG Tom Perkins, Ph.D.
LAB#1 CSC st semster H King Saud University College of Applied studies and Community Service Csc 1101.
Using Visual Basic 2010 Express Version. Studio vs Express For most purposes irrespective the version of Visual Studio the express version is sufficient.
Computer Graphics Lab 1 OpenGL.
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.
Lab00-Getting Started with VC Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
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.
Chapter 27 Getting “Web-ified” (Web Applications) Clearly Visual Basic: Programming with Visual Basic nd Edition.
Microsoft Expression Web - Illustrated Unit A: Getting Started With Microsoft Expression Web.
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
Building C# Applications
Dive Into® Visual Basic 2010 Express
Development Environment Setup
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.
OpenGL project setup.
CSCI 3328 Object Oriented Programming in C# Chapter 2: Introduction to Visual C# Programming UTPA – Fall 2012 This set of slides is revised from lecture.
What should I do first MSRDS First Beginner Course - STEP1
Excel in M.E. –Using add-ins
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.
Lab 1 Introduction to C++.
Creating Your First C Program Using Visual Studio 2010
Visual Studio 2010 SharePoint Development Tools Overview
Creating Your First C Program Using Visual Studio 2010
Double click Microsoft Visual Studio 2010 on the Computer Desktop
Visual Studio Tools for Unity 2.0 Preview
ㅎㅎ First Step for Learning C++ Programming
Computer Terms Review from what language did C++ originate?
Presentation transcript:

ZONG Wen Department of Computer Science and Engineering The Chinese University of Hong Kong

1, Introduction to Tools 2, A “Hello world” Demo 3, A “Move-Add” Demo

Visual C Express download link: go.microsoft.com/?linkid=

Win32 Console Application

Check Empty project, click Finish

Click Next >

Menu “ Project ” -> ” Custom Build Rules ” Check “Microsoft Macro Assembler”

Menu “ Project ” -> ” Add New Item ”. asm extension

Menu “Project” -> “Properties”

Copy the following code

Menu “Build” -> “Build Solution”, or F7 Menu “Debug” -> “Start Debugging”, or F5

F10 Step Over

Menu Debug -> Windows -> Disassembly Alt + 8

Right click msgbox.asm, click Properties Excluded From Build -> Yes

Copy the following code

Right click Source Files -> Add -> New Item

Press F10 to debug Registers window

Course homepage & source code ( lib ): come.html

1, Introduction to Tools ( VC2008 ) 2, “Hello world” Demo 3, “Move-Add” Demo