COMP 170 – Introduction to Object Oriented Programming

Slides:



Advertisements
Similar presentations
Introduction to Eclipse. Start Eclipse Click and then click Eclipse from the menu: Or open a shell and type eclipse after the prompt.
Advertisements

1 CSCI N305 C Language Programming Welcome to CSCI N305! Compiling Your First Program Using Microsoft Visual Studio 2008.
1 Mobile Computing Mobile First (formerly Worklight) Copyright 2015 by Janson Industries.
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
Course Introduction and Getting Started with C 1 USF - COP C for Engineers Summer 2008.
Creating a Console Application with Visual Studio
1 Mapping a Drive on the USF IIS Server. 2 Mapping a Drive To map a drive to a network file directory in Windows you must be on a Microsoft local area.
Microsoft Visual Basic 2005 CHAPTER 12 Cell Phone Applications and Web Services.
1 Mobile Computing Set Up Copyright 2015 by Janson Industries.
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.
Introduction to Systems Programming (CS 0449) PalmOS Tools: Developer Studio & Cygwin.
Introduction to the Visual Studio.NET IDE (LAB 1 )
Computer Science I How to Configure Visual Studio.NET 2003 for C++ Colin Goble.
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:
EIE375 BlueJ: Getting Started Dr Lawrence Cheung.
Introduction to Web Services. Examples Using a Web Service Creating a new Web Service.
Run your first C program.  Bring your computers to class  No prior programming experience is needed  Hours spent  Sakai  TAs.
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.
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
Lab00-Getting Started with VC Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.
1 Installing Java on Your PC. Installing Java To develop Java programs on your PC: Install JDK (Java Development Kit) Add the directory where JDK was.
1 Getting Started with C++ Part 2 Linux. 2 Getting Started on Linux Now we will look at Linux. See how to copy files between Windows and Linux Compile.
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.
How to Execute TSR Program. Install Borland C++ Download Borland C++ from LMS – oads/BORLANDC.rarhttp://vulms.vu.edu.pk/Courses/CS609/Downl.
Java On the ENB 116 Computers The JDK is now available on the ENB 116 computers. You can use a classroom computer rather than your own laptop or CIRCE.
Practical Kinetics Exercise 0: Getting Started Objectives: 1.Install Python and IPython Notebook 2.print “Hello World!”
How to Execute first program in Borland C++. Install Borland C++ Download Borland C++ from LMS – rland%20C++%20V3.1.ziphttp://vulms.vu.edu.pk/Courses/CS609/Downloads/Bo.
1 Mapping a Drive on a USF IIS Server. 2 Mapping a Drive To map a drive to a network file directory in Windows you must be on a Microsoft local area network,
Creating a Zip File with a Password. 1.Right Click on the File or Folder you want to Zip. 2.Choose “Add to Zip”
Tutorial 1 Writing Your First C++ Program CSC1110C Introduction to Computer Programming By Paul Pun Acknowledgement: Special thanks to Dr. Michael Fung.
Dr. Robert Yacobellis – Introduction to OO Programming 11 COMP 170 – Introduction to Object Oriented Programming Dr. Robert Yacobellis Instructor, Department.
TIZEN STUDIO INSTALLATION & ENVIRONMENT SETUP FOR DEVLAB
Dive Into® Visual Basic 2010 Express
Introduction to iOS App Development Environment
Development Environment
Chapter 2: The Visual Studio .NET Development Environment
Downloading a Purchased App from the Anderson One App Store
Introduction to Eclipse
How to Run Xamarin Studio in Class
Chapter 2 – Introduction to the Visual Studio .NET IDE
PowerPoint Web Feature
COMP 170 – Introduction to Object Oriented Programming
Introduction to Computers
Bomgar Remote support software
Software Development Jar Files for Applications and Libraries
How to fix Update Failure Error “0x800f081f” on Windows 10 KB ?
Instructor: Prasun Dewan (FB 150,
Lecturer: Mukhtar Mohamed Ali “Hakaale”
Module 1: Getting Started with Windows 95
Setting up Eclipse Locally
How to Run a Java Program
1. Open Visual Studio 2008.
Run Java file with Window cmd
Lab 1 Introduction to C++.
CGS 3175: Internet Applications Fall 2009
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
OS Sim (Operating System Concepts Simulator)
Download and Installation of code::blocks
Double click Microsoft Visual Studio 2010 on the Computer Desktop
POS 408 Week 1 Individual Assignment Individual: Console Display Message//tutorfortune.com Click on below link to buy
Creating the First Program
How to Execute TSR Program
Windows Installation Tutorial
Young Joon Kim SPL basic – Quick Start SPL First Beginner Course – 01 Young Joon Kim
How to Execute TSR Program
Running a Java Program using Blue Jay.
CSCE 206 Lab Structured Programming in C
Microsoft Office Word 2003 Lesson 1
Presentation transcript:

COMP 170 – Introduction to Object Oriented Programming Dr. Robert Yacobellis Instructor, Department of Computer Science 1

Installing COMP 170 Software Installing and Verifying Mono Project and Xamarin Studio on Mac OS X and Windows Using provided installers from LUC Box Verifying that the software installed properly Using the examples folder in Xamarin Studio Opening as a “Solution” in Xamarin Studio

Installing Mono Project and Xamarin Studio All required installers for COMP 170 are in a shared LUC Box folder at this URL: https://luc.box.com/s/zu76yo7uao5yfijmjch1 There are zip files for Mac OS X and Windows with numbered installer files – execute them in that order You should be using OS X Mountain Lion or later on a Mac If you have Win 7 or later you may not need to install .NET The installers install the Mono Project “software development kit” (SDK) and the Xamarin Studio “integrated development environment” (IDE) See the next slides for how to verify that they installed properly

Verifying Mono Project On Mac OS X, open a Terminal window*; on Windows press the Windows key and start typing Mono, then select Mono Command Prompt First type mono and press enter – you should see a usage message Then type mcs and enter – you should see an error message saying No files to compile were specified Last, type csharp and enter – you should see a few lines of text and csharp>; type quit; and enter to exit If all of these work, the Mono SDK is properly installed * Use Spotlight to find the OS X Terminal App

Verifying Xamarin Studio On Mac OS X, Xamarin Studio is in Applications; on Windows press the Windows key and start typing Xamarin, then select Xamarin Studio Click New Solution in the Xamarin window, then select C# on the left and Console Project on the right Enter hello as the Name, test as the Solution; click OK You will now see a window with a Solution “Pad” on the left and a file Program.cs open in an editor window; you can now close Xamarin Studio When you open Xamarin Studio again you will see the test Solution as a choice on the Welcome page

Using the examples Folder in Xamarin Studio Opening the examples folder as a “Solution” Run Xamarin Studio On Windows, press the Windows key, start typing Xamarin, and select Xamarin Studio when that name appears; on a Mac, select Xamarin Studio in the Applications directory Click Open and navigate to your examples folder / directory, scroll down, and select examples.sln by double-clicking it or clicking it and pressing Enter You should now see all of the “Project” folders within that examples “Solution”, available to experiment with If you select View  Welcome Page or open Xamarin Studio again, the examples “Solution” will appear there from now on

Installing COMP 170 Software Installing and Verifying Mono Project and Xamarin Studio on Mac OS X and Windows Using provided installers from LUC Box Verifying that the software installed properly Using the examples folder in Xamarin Studio Opening as a “Solution” in Xamarin Studio