CSC235 - Visual Studio Getting Started.

Slides:



Advertisements
Similar presentations
Lecture 3 Getting Started with ITK!. Goals for this lecture Learn how to use Cmake Build ITK Example programs that use ITK.
Advertisements

Programming in the Office 2003 Environment Corinne Hoisington.
Windows 8 App Challenge.
Object Oriented Software Development 1. Introduction to C# and Visual Studio.
Tutorial 11 Installing, Updating, and Configuring Software
CSC 494/594 C# and ASP.NET Programming. C# 2012 C# Object-oriented language with syntax that is similar to Java.
Introduction Purpose This course describes the process of installing the KPIT GNU toolchain on your PC. Objective Learn how easy it is to get information.
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.
1 Working with MS SQL Server Textbook Chapter 14.
1.1 Introduction to Programming academy.zariba.com 1.
Running PHP and WordPress in.NET CLR and IIS Svetlin Nakov Ph.D., Computer Science WordCamp Sofia, 26-Oct-2013.
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 )
Module 2: Using Microsoft Visual Studio.NET. Overview Overview of Visual Studio.NET Creating an ASP.NET Web Application Project.
1 Programming Environment and Tools VS.Net 2012 First project MSDN Library.
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.
Creating New Forms Projects can appear more professional when using different windows for different types of information. Select Add Windows Form from.
Downloading a Visual C compilers (try it yourself at home) Visual Studio 2012 can be found at:
John Samuels October, Why Now?  Vista Problems  New Features  >4GB Memory Support  Experience.
How to download and install software from Microsoft Imagine
CMPT 201 Computer Science II for Engineers
Introduction to Visual Basic. NET,. NET Framework and Visual Studio
Sir Thomas Boughey High School A/S Level ICT
CSC 215 : Procedural Programming with C
CMIT100 CHAPTER 13 - SOFTWARE.
Chapter 2: The Visual Studio .NET Development Environment
TMHU Technical Information System Training Package for Parts
C Programming Lecture-1 Overview and Environment Setup
Introduction to Visual Basic 2008 Programming
Create Virtual Directory Windows 8 - IIS 8.5
Introduction to .NET Framework Ch2 – Deitel’s Book
Software basics on the Internet
Getting started in Eclipse
Chapter 2 Setup.
MKCL’s Quasi Online Examination - Practice Exam System
Quick Start Guide for Visual Studio 2010
CIS16 Application Development – Programming with Visual Basic
Control Structures (part II)
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired. 1.
Getting started with SharePoint Framework
Microsoft Virtual Academy
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired. 1.
Creating Your First C Program Using Visual Studio 2010
CSC235 - Visual Studio Tutorial
Creating Your First C Program Using Visual Studio 2010
Computers Tools for an Information Age
Install MySQL Community Server and MySQL Workbench
You may choose to use any one of these provide slide templates and make changes as desired. 1.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired. 1.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
RapidFinder Analysis Software How-To Guide
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
Ch 1 .Installing and configuring SQL Server 2005
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
You may choose to use any one of these provide slide templates and make changes as desired.
C# and ASP.NET Programming
You may choose to use any one of these provide slide templates and make changes as desired.
Presentation transcript:

CSC235 - Visual Studio Getting Started

Visual Studio Visual Studio is an IDE Integrated Development Environment Self-contained CAD tool for software development (Computer Aided Design) Supports a wide variety of programming languages Supplied/maintained by Microsoft For code development on Windows

Visual Studio 2015 CSC235 will use the 2015 release of VS It is installed on the classroom/lab computers Available for home use for free! Through KU’s Imagine program Directly from Microsoft You *MUST* use v2015 for class projects To avoid migration and compatibly issues Note: you can have newer/other versions installed

Obtaining VS-2015 Get it KU’s Imagine site https://e5.onthehub.com/WebStore/ProductsByMajorVersionList.aspx?ws=574639d2-d89b-e011-969d-0030487d8897&vsro=8 Again it’s free Search for “Visual Studio 2015” Make sure you get 2015! Less hassle than the Microsoft site (next).

Obtaining VS-2015 (option 2) Get it directly from Microsoft https://my.visualstudio.com/Downloads?q=visual%20studio%202015&wt.mc_id=o~msft~vscom~older-downloads Without this link, you will have to hunt on the MS site You will need to have, or create, an account Select: Visual Studio Community The “community” version is free But you may have to login with a MS account The trial period of the “premium” version expires after 30 days, then you have to pay

CSC235 Programs CSC235 will make use of pre-packaged libraries and setup Libraries from Irvine textbook Visual Studio project template Library and template available on shared drive (S:) S:\ComputerScience\Carelli\CSC235

Irvine Library Copy Irvine.zip from the shared drive It contains a directory called “Irvine” Unzip it and place the “Irvine” directory in either the “C” drive main directory or your Documents directory C:\Irvine C:\Users\<Carelli>\Documents\Irvine Use your user name instead of “Carelli”! Test it with the “AddVariables” example Set a breakpoint, as demonstrated in class!

Program Template BlankProject Available on the shared drive Template for creating your own programs Copy it Change the directory name to anything you choose Contains a Solution & Project called “Project235” Easiest to just keep that project name “blank.asm” is a starting point for an assembly language program - set up for a 32 bit operation Or, you can start with an existing example!

About the supplied material Irvine Directory Textbook examples for both 32 and 64 bit Organized by chapter Pre-packaged libraries Described in chapter 5 (Irvine32, in particular) BlankProject Set up to look for libraries on locally and on shared drive Not the same as described in the book!

Debugging To view either the register or memory windows (if not already visible) Compile the program Set a breakpoint to interrupt execution While running, select either: Debug->Windows->Registers Debug->Windows->Memory->Memory# Move the window as desired… See next slide…

Memory & Register Views