Learning to Run a C Program With CodeWarrior (Adapted From MetroWerks)

Size: px
Start display at page:

Download "Learning to Run a C Program With CodeWarrior (Adapted From MetroWerks)"

Transcription

1 Computer Science 1 Fall, 1998 Prof. Kugel Learning to Run a C Program With CodeWarrior (Adapted From MetroWerks) Introduction The purpose of this tutorial is to show you how to use CodeWarrior to enter and run a C program. It will walk you through the job of entering a specific program (The first program in our book.) and you should work this example through on a computer to make sure that you understand each step and that things work the way you think they do. You will be writing C programs as homeworks throughout this term and, as you will find out, it is not particularly hard to do. But it may seem a bit complicated at first because CodeWarrior is an industrial-strength programming system and it is not as easy to use as a system designed just for educational purposes. It will take a bit of getting used to and the purpose of this tutorial is to help you get used to it. This tutorial is written for users of the PC with CodeWarrior 3.0. Those of you using a Macintosh will see some minor differences that are discussed in this tutorial, but you should be able to figure out how it works. Do not use the Macintoshes at the OCF. The program you are going to enter is program 2.1 on page 43 of the text. Once you know how to enter and run this program, you can follow the same steps to enter and run other programs. You might want to prepare your own simplified sheet of how to instructions for future use as you work through this tutorial. We are going to assume that you already know how to use your computer (PC or Mac). If you don t, please don t hesitate to ask me or the TA for help. To write and run a program, you will have to do the five things shown on the following page. 1

2 0. Start CodeWarrior. 1. Use CodeWarrior to create a new project. 2. Enter your program into a file. 3. Compile, link, and run the project. 4. Print your program and its output(s) to hand in. 0. Start CodeWarrior We are going to assume that you are using a computer into which CodeWarrior has already been installed. (If it has not, install it using the online instructions. CodeWarrior is available at the BC Computer Store. Please make sure you have version 3.) Start up your computer. If you re working on a PC, click on Start in the task bar at the bottom of your screen. Choose Programs, then CodeWarrior Pro 3, then CodeWarrior. On a Macintosh, open MetroWerks, then MetroWerks CodeWarrior then CodeWarrior IDE 3.0. On a PC, the main task bar of the CodeWarrior application will appear. It looks like this: On a Macintosh, you will just see a new menu bar appear. You are now ready to create a project. When you are done, your project will include your new program together with any other files needed to run it. 1. Create a New Project To create a new project, start by choosing New Project from the File menu, A dialog box New Project appears. For the PC: From the Project Stationery list, use the little +boxes to the left of each entry to navigate the hierarchy of project types to go from Win32x86 to C, C++ to the C Console App. Click on C Console App to select it. (See next page for an image of what you should see now.) For the Mac: Follow the same steps but navigate through Mac OS, and select either ANSI C Console 68K (if you have a 68K-based Mac) or ANSI C Console PPC (if you have a Power PC). (Names may be slightly different.) 2

3 Here s what your New Project window looks like on the PC, with C Console App selected: Make sure the Create Folder checkbox is selected. If it is not, click it to select it. Click OK to continue. The New Project dialog box closes and a Name new project as box appears. Use the navigation controls (The briefcase with an arrow on it on the PC.) to choose a location for your new project. A good place for your project is the Desktop if you are using your own computer. (To get there, keep clicking the briefcase until the word Desktop appears in your Save As window. If you are using a public computer, save your project on your own floppy disk, (NOTE: Don t put the new project in the CodeWarrior folder or in one of its sub-folders. If you do, you may lose your project when you update CodeWarrior.) Without pressing Return or Enter, type a name for the project in the File name field. You can name your project First Program or almost anything else you like. Click Save to create a new project file and close the dialog box. In a moment, a new window will appear, titled (if you are using a PC) First Program.mcp or whatever you named it with.mcp at the end. That window will look like this: 3

4 This is the project you ve just created. CodeWarrior uses the.mcp file name extension (It stands for Metrowerks CodeWarrior Project. ) for CodeWarrior projects. If you are using a Mac, the project will just be titled First Program. 2. Enter Your Program Into A File Now that you have created a project folder, you are ready to use the text editor to write your program. Click on the + box next to Source. Then open main by double-clicking it. You will see a window with a program in it. Select that program and delete it. You may now type in your program into the window just as you type text into a word-processor window. Enter the following program exactly as it appears below into your window. (Note that the slash after A perfect quiz is %i points. is a back-slash. (\ rather than /) So is the one after score? ) Press Return at the end of each line. /* A Sample Program Meant to illustrate the format of a C program listing */ #include <stdio.h> /* Compiler directive */ void main() /* Beginning of function definition. */ { int quiz; /* Declaration of variable. */ quiz = 20; /* Assignment statement */ printf( A perfect quiz is %i points.\n, quiz); /* Displays on screen.*/ printf( Will I get a perfect score?\n ); } This is essentially the program on page 43 of the text with one small change. The exact number of spaces, when there are lots of them, does not matter although there must be at least one. Please remember that spelling, punctuation and spaces do matter. So does upper and lower case. If you make a mistake, the computer may not understand you. You will have a chance to correct any mistakes you make (It s not a disaster.) but mistakes can be hard to find. Try to prevent them (although you can t expect to be 100% effective in this). The editor has features to help you enter source code. Press the Tab key to indent a line. The editor will automatically indent the next line to the same level as the previous line for you. Press the Backspace key to remove any spaces or tabs or other errors that you or the editor have entered. 4

5 Note: Did you notice that the color of what you type sometimes changes as you type it in? This is syntax highlighting in action. Syntax highlighting uses color to emphasize keywords and other items, making it easier for you to view, enter, and edit your source code. Comments (which the computer ignores) are in red or pink. Keywords are in blue or green.) Part 3: Compile, Link, and Run Your Project You are now ready to compile, link, and run your program. Choose Run from the Project menu. CodeWarrior now attempts to compile all the new and modified files in your project, link the compiled files together with the library programs it needs into an application, and then runs the application.) At this point, if you typed everything correctly (and chances are good that you did not) CodeWarrior has successfully created an application from your project and you ve run it. If a window appears titled Errors & Warnings, you may have entered the source code incorrectly, or added the wrong files to the project. You will have to correct your errors. Make the appropriate changes to the source program in the window First Program.c, save the changes, and run the program again. Keep doing this until the program works. On the PC, when you finally get it to compile, the following should appear: A perfect quiz is 20 points. Will I get a perfect score? Press Enter to continue Congratulations. You ve created a standard C program that uses console input/output. Do not press Enter yet. On the Mac, the Press Enter to continue will not appear. Part 4. Print You ll want to print both your program and its output to hand in. Often you will have more than one program and/or more than one run. I am going to suggest that you create a word-processing document and paste your programs and results into it. (Use a single document for all your stuff to save paper.) Your document should have your name on the top right hand corner and the number of the assignment centered at the top as in the following example: Assignment 1 Sam Dilbert If you re working on a Macintosh, create your word processing document and cut and paste. On the PC, create your word processing document and 5

6 copy your program just as in a Mac. But copying your output is a bit more difficult. Click on the DOS prompt which appears on the upper left hand corner of the output window. Select Edit, then Mark, then Copy. Drag down the white area on the left hand corner of the screen. Pull down the Edit menu and select Copy. This copies the selected text to the system Clipboard. You must now open up your word-processing document and paste the selection where you want it. You may want to change the font of the output to Courier to suppress the proportional spacing which may foul up certain kinds of output. When you are done Quit your program. On a Macintosh, choose Quit from the File menu. (You ll be asked if you want to create a standalone version of your program. Feel free to try it but most of the time, you won t want to do it.). On a PC, just hit the return key, and the program will terminate. You can now exit CodeWarrior. What You ve Learned: In this tutorial you created a project. Then you typed your program. You then compiled, linked and ran your program. At this point, you may have had to correct what you did (because your program did not compile, link or run properly). Finding your errors will not always be easy but doing this (debugging) is an important part of programming. Finally, you prepared a document to hand in, printed it out and brought it to class (on time). We will add some steps to this process as the course proceeds, but that s it for now. You are now ready to write and enter your own programs. 6

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

NTFS permissions represent a core part of Windows s security system. Using

NTFS permissions represent a core part of Windows s security system. Using bonus appendix NTFS Permissions NTFS permissions represent a core part of Windows s security system. Using this feature, you can specify exactly which coworkers are allowed to open which files and folders

More information

Getting Started on the Computer With Mouseaerobics! Windows XP

Getting Started on the Computer With Mouseaerobics! Windows XP This handout was modified from materials supplied by the Bill and Melinda Gates Foundation through a grant to the Manchester City Library. Getting Started on the Computer With Mouseaerobics! Windows XP

More information

TLMC WORKSHOP: THESIS FORMATTING IN WORD 2010

TLMC WORKSHOP: THESIS FORMATTING IN WORD 2010 Table of Contents Introduction... 2 Getting Help... 2 Tips... 2 Working with Styles... 3 Applying a Style... 3 Choosing Which Styles to Use... 3 Modifying a Style... 4 Creating A New Style... 4 Setting

More information

Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/

Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/ Super-Fast Guide to Audio Editing Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/ Installing Audacity 1. Download Audacity to your own computer. 2.

More information

Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac)

Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac) Passports in Microsoft PowerPoint Quick Guide Created Updated PowerPoint is a very versatile tool. It is usually used to create multimedia presentations and printed handouts but it is an almost perfect

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012

Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012 Setting Up Your Android Development Environment For Mac OS X (10.6.8) v1.0 By GoNorthWest 3 April 2012 Setting up the Android development environment can be a bit well challenging if you don t have all

More information

Creating a Simple Visual C++ Program

Creating a Simple Visual C++ Program CPS 150 Lab 1 Name Logging in: Creating a Simple Visual C++ Program 1. Once you have signed for a CPS computer account, use the login ID and the password password (lower case) to log in to the system.

More information

COMMONWEALTH OF PA OFFICE OF ADMINISTRATION. Human Resource Development Division. SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3

COMMONWEALTH OF PA OFFICE OF ADMINISTRATION. Human Resource Development Division. SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3 COMMONWEALTH OF PA OFFICE OF ADMINISTRATION Human Resource Development Division SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3 S A P L S O A U T H O R I N G E N V I R O N M E N T Authoring & Publishing

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

Sendspace Wizard Desktop Tool Step-By-Step Guide

Sendspace Wizard Desktop Tool Step-By-Step Guide Sendspace Wizard Desktop Tool Step-By-Step Guide Copyright 2007 by sendspace.com This publication is designed to provide accurate and authoritative information for users of sendspace, the easy big file

More information

Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8

Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8 Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8 1. Read entire document before continuing. 2. Close all browser windows. There should be no websites open. If you are using

More information

Astronomy 101: On-Line Reading Quizzes

Astronomy 101: On-Line Reading Quizzes Astronomy 101: On-Line Reading Quizzes San Diego State University, Prof. Leonard Note that the website at which the weekly reading quizzes will be taken will not be available for registration until Thursday,

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics Microsoft Word 2010 Basics 1. Start Word if the Word 2007 icon is not on the desktop: a. Click Start>Programs>Microsoft Office>Microsoft Word 2007 b. The Ribbon- seen across the top of Microsoft Word.

More information

GETTING STARTED TABLE OF CONTENTS

GETTING STARTED TABLE OF CONTENTS Windows 7 Tutorial GETTING STARTED An operating system, sometimes called an OS, is the main program the computer uses to function properly. Operating systems act as a link between you, the user, and the

More information

Using an Edline Gradebook. EGP Teacher Guide

Using an Edline Gradebook. EGP Teacher Guide Using an Edline Gradebook EGP Teacher Guide Table of Contents Introduction...3 Setup...3 Get the Gradebook Web Plugin... 3 Using Your Web Gradebook... 4 Using the Web Gradebook on a Shared Computer...

More information

Maple T.A. Beginner's Guide for Instructors

Maple T.A. Beginner's Guide for Instructors Maple T.A. Beginner's Guide for Instructors Copyright Maplesoft, a division of Waterloo Maple Inc. 2013 Maple T.A. Beginner's Guide for Instructors Contents Preface... v 1 Maple T.A. Quick Start for Instructors...

More information

Mimeo Printer User Guide

Mimeo Printer User Guide Mimeo Printer User Guide 1.800.GoMimeo mimeo.com Table of Contents Step 1: Download & Install the Mimeo Printer... 2 Step 2: Select Files for Uploading... 4 Step 3: Build Your Document... 8 Frequently

More information

Statgraphics Getting started

Statgraphics Getting started Statgraphics Getting started The aim of this exercise is to introduce you to some of the basic features of the Statgraphics software. Starting Statgraphics 1. Log in to your PC, using the usual procedure

More information

Installing Java 5.0 and Eclipse on Mac OS X

Installing Java 5.0 and Eclipse on Mac OS X Installing Java 5.0 and Eclipse on Mac OS X This page tells you how to download Java 5.0 and Eclipse for Mac OS X. If you need help, Blitz cs5help@cs.dartmouth.edu. You must be running Mac OS 10.4 or later

More information

TM Online Storage: StorageSync

TM Online Storage: StorageSync TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please

More information

HOW TO ORGANIZE PICTURES

HOW TO ORGANIZE PICTURES Get started When you upload your pictures to Shutterfly, you can do much more than view them. Our workspace offers tools that let you quickly and easily organize your photos as well. We re going to show

More information

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

TUTORIAL 4 Building a Navigation Bar with Fireworks

TUTORIAL 4 Building a Navigation Bar with Fireworks TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar

More information

i>clicker integrate for Canvas v1.1 Instructor Guide

i>clicker integrate for Canvas v1.1 Instructor Guide i>clicker integrate for Canvas v1.1 Instructor Guide July 2013 Table of Contents Overview... 3 Step 1: Copy your integrate Wizard Files... 4 Step 2: Configure your i>clicker Software... 5 Step 3: Create

More information

Appendix K Introduction to Microsoft Visual C++ 6.0

Appendix K Introduction to Microsoft Visual C++ 6.0 Appendix K Introduction to Microsoft Visual C++ 6.0 This appendix serves as a quick reference for performing the following operations using the Microsoft Visual C++ integrated development environment (IDE):

More information

X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder. Tutorial. Michał Zabielski 2010-08-05

X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder. Tutorial. Michał Zabielski 2010-08-05 X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder Tutorial Michał Zabielski 2010-08-05 Table of Contents Installation...3 Legal notification...7 Initial adjustments / Preferences...8 Language...8 Platform

More information

Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright

Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright You do NOT have to turn anything in I can see your scores and grades online in my Teacher Manager. Read this syllabus carefully! Step

More information

Chapter 6. Formatting Text with Character Tags

Chapter 6. Formatting Text with Character Tags Chapter 6 Formatting Text with Character Tags 143 144 FrameMaker 7: The Complete Reference In many desktop publishing applications, you use a single style sheet for both paragraph and character formatting.

More information

CS106B Handout #5P Winter 07-08 January 14, 2008

CS106B Handout #5P Winter 07-08 January 14, 2008 CS106B Handout #5P Winter 07-08 January 14, 2008 Using Microsoft Visual Studio 2005 Many thanks to Matt Ginzton, Robert Plummer, Erik Neuenschwander, Nick Fang, Justin Manus, Andy Aymeloglu, Pat Burke,

More information

How do you use word processing software (MS Word)?

How do you use word processing software (MS Word)? How do you use word processing software (MS Word)? Page 1 How do you use word processing software (MS Word)? Lesson Length: 2 hours Lesson Plan: The following text will lead you (the instructor) through

More information

3 IDE (Integrated Development Environment)

3 IDE (Integrated Development Environment) Visual C++ 6.0 Guide Part I 1 Introduction Microsoft Visual C++ is a software application used to write other applications in C++/C. It is a member of the Microsoft Visual Studio development tools suite,

More information

Quick Reference Guide 1 Lync for Mac 2011 Using Lync 2011 Client

Quick Reference Guide 1 Lync for Mac 2011 Using Lync 2011 Client Quick Reference Guide 1 Lync for Mac 2011 Using Lync 2011 Client r Lync for Mac 2011 is the latest instant messaging (IM) client from Microsoft for the Macintosh platform and is the upgrade to Microsoft

More information

Visual Studio 2008 Express Editions

Visual Studio 2008 Express Editions Visual Studio 2008 Express Editions Visual Studio 2008 Installation Instructions Burning a Visual Studio 2008 Express Editions DVD Download (http://www.microsoft.com/express/download/) the Visual Studio

More information

Getting Started Using AudibleManager. AudibleManager 5.0

Getting Started Using AudibleManager. AudibleManager 5.0 Getting Started Using AudibleManager AudibleManager 5.0 Overview of AudibleManager... 5 AUDIBLE FOLDERS... 5 FOLDERS CONTENT WINDOW... 5 MOBILE DEVICES... 5 DEVICE VIEW... 5 DETAILS VIEW... 5 Functions

More information

Working with the Ektron Content Management System

Working with the Ektron Content Management System Working with the Ektron Content Management System Table of Contents Creating Folders Creating Content 3 Entering Text 3 Adding Headings 4 Creating Bullets and numbered lists 4 External Hyperlinks and e

More information

If you know exactly how you want your business forms to look and don t mind

If you know exactly how you want your business forms to look and don t mind appendix e Advanced Form Customization If you know exactly how you want your business forms to look and don t mind detail work, you can configure QuickBooks forms however you want. With QuickBooks Layout

More information

NJCU WEBSITE TRAINING MANUAL

NJCU WEBSITE TRAINING MANUAL NJCU WEBSITE TRAINING MANUAL Submit Support Requests to: http://web.njcu.edu/its/websupport/ (Login with your GothicNet Username and Password.) Table of Contents NJCU WEBSITE TRAINING: Content Contributors...

More information

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window.

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window. Word Processing Microsoft Works Windows 95 The intention of this section is to instruct basic word processing skills such as creating, editing, formatting, saving and closing a new document. Microsoft

More information

OUTLOOK WEB APP (OWA): MAIL

OUTLOOK WEB APP (OWA): MAIL Office 365 Navigation Pane: Navigating in Office 365 Click the App Launcher and then choose the application (i.e. Outlook, Calendar, People, etc.). To modify your personal account settings, click the Logon

More information

SURPASS HOSTING SERVICE GETTING STARTED AND OPERATIONS GUIDE

SURPASS HOSTING SERVICE GETTING STARTED AND OPERATIONS GUIDE SURPASS HOSTING SERVICE GETTING STARTED AND OPERATIONS GUIDE Welcome To Surpass Hosting Service. This document contains instructions to help you get up and running with your new service. The instructions

More information

Using Karel with Eclipse

Using Karel with Eclipse Mehran Sahami Handout #6 CS 106A September 23, 2015 Using Karel with Eclipse Based on a handout by Eric Roberts Once you have downloaded a copy of Eclipse as described in Handout #5, your next task is

More information

INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT

INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT Starting PowerPoint 1. Click the Start button 2. Click on Microsoft Office PowerPoint on the Programs menu. If you don t see it there,

More information

einstruction CPS (Clicker) Instructions

einstruction CPS (Clicker) Instructions Two major approaches to run Clickers a. Anonymous b. Tracked Student picks any pad as s/he enters classroom; Student responds to question, but pad is not linked to student; Good for controversial questions,

More information

Programming in Access VBA

Programming in Access VBA PART I Programming in Access VBA In this part, you will learn all about how Visual Basic for Applications (VBA) works for Access 2010. A number of new VBA features have been incorporated into the 2010

More information

Training Manual. Version 6

Training Manual. Version 6 Training Manual TABLE OF CONTENTS A. E-MAIL... 4 A.1 INBOX... 8 A.1.1 Create New Message... 8 A.1.1.1 Add Attachments to an E-mail Message... 11 A.1.1.2 Insert Picture into an E-mail Message... 12 A.1.1.3

More information

Malwarebytes Anti-Malware 1.42

Malwarebytes Anti-Malware 1.42 Downloading Installing And First-Time Use Updating and Scanning Malwarebytes Anti-Malware 1.42 DOWNLOADING Download the latest version of Malwarebytes Anti-Malware (currently 1.42) from http://www.download.com.

More information

Integrated Accounting System for Mac OS X

Integrated Accounting System for Mac OS X Integrated Accounting System for Mac OS X Program version: 6.3 110401 2011 HansaWorld Ireland Limited, Dublin, Ireland Preface Standard Accounts is a powerful accounting system for Mac OS X. Text in square

More information

Microsoft Word 2011: Create a Table of Contents

Microsoft Word 2011: Create a Table of Contents Microsoft Word 2011: Create a Table of Contents Creating a Table of Contents for a document can be updated quickly any time you need to add or remove details for it will update page numbers for you. A

More information

VIVIDESK Desktops can be accessed with a Macintosh Computer by one of two methods:

VIVIDESK Desktops can be accessed with a Macintosh Computer by one of two methods: VIVIDESK Desktops can be accessed with a Macintosh Computer by one of two methods: 1. If you have Macintosh OS version IX, then VIVIDESK is best viewed using Windows emulation software. 2. If you have

More information

MICROSOFT WORD TUTORIAL

MICROSOFT WORD TUTORIAL MICROSOFT WORD TUTORIAL G E T T I N G S T A R T E D Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents,

More information

Business Objects InfoView Quick-start Guide

Business Objects InfoView Quick-start Guide Business Objects InfoView Quick-start Guide Last Modified: 10/28/2015 The latest PDF version of this document can be found at: http://www.calpolycorporation.com/docs/finance/boeinfoviewquickstart.pdf What

More information

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Excel basics Excel is a powerful spreadsheet and data analysis application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents:

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents: Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk Table of Contents: 1) The Macintosh HD 2) Your Home Directory 3) The Finder 4) The

More information

Introduction to the use of the environment of Microsoft Visual Studio 2008

Introduction to the use of the environment of Microsoft Visual Studio 2008 Steps to work with Visual Studio 2008 1) Start Visual Studio 2008. To do this you need to: a) Activate the Start menu by clicking the Start button at the lower-left corner of your screen. b) Set the mouse

More information

From the list of Cooperative Extension applications, choose Contacts Extension Contact Management System.

From the list of Cooperative Extension applications, choose Contacts Extension Contact Management System. 1 Illustrated Guide to Creating Labels with Word for Mac 2008 for Mailing Lists in the Extension Contacts Database Note: With most computer tasks, there are multiple ways to achieve the same results. Substitute

More information

User Support Manual KIDS IEP AND DATA MANAGEMENT SOFTWARE PROGRAM. Customized Relational Technology, Inc.

User Support Manual KIDS IEP AND DATA MANAGEMENT SOFTWARE PROGRAM. Customized Relational Technology, Inc. Customized Relational Technology, Inc. 17726-J Oak Park Ave., Tinley Park, IL 60477 Phone: (708) 532-7022 Fax: (708) 532-7028 Toll Free: (866) 640-KIDS (5437) Email: support@iep-crt.com User Support Manual

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

A Quick Start Guide to Using PowerPoint For Image-based Presentations

A Quick Start Guide to Using PowerPoint For Image-based Presentations A Quick Start Guide to Using PowerPoint For Image-based Presentations By Susan Jane Williams & William Staffeld, Knight Visual Resources Facility College of Architecture, Art and Planning Cornell University.

More information

Building Qualtrics Surveys for EFS & ALC Course Evaluations: Step by Step Instructions

Building Qualtrics Surveys for EFS & ALC Course Evaluations: Step by Step Instructions Building Qualtrics Surveys for EFS & ALC Course Evaluations: Step by Step Instructions Jennifer DeSantis August 28, 2013 A relatively quick guide with detailed explanations of each step. It s recommended

More information

Managing Files. On a PC, after you find your file, right click it and selet Rename from the pop-up menu.

Managing Files. On a PC, after you find your file, right click it and selet Rename from the pop-up menu. Managing Files File Types, Renaming Files The software you are using will automatically save your file as the type that applies to your current application. For Microsoft Word documents, for example, will

More information

Before you can use the Duke Ambient environment to start working on your projects or

Before you can use the Duke Ambient environment to start working on your projects or Using Ambient by Duke Curious 2004 preparing the environment Before you can use the Duke Ambient environment to start working on your projects or labs, you need to make sure that all configuration settings

More information

Cleaning your Windows 7, Windows XP and Macintosh OSX Computers

Cleaning your Windows 7, Windows XP and Macintosh OSX Computers Cleaning your Windows 7, Windows XP and Macintosh OSX Computers A cleaning of your computer can help your computer run faster and make you more efficient. We have listed some tools and how to use these

More information

Samsung Xchange for Mac User Guide. Winter 2013 v2.3

Samsung Xchange for Mac User Guide. Winter 2013 v2.3 Samsung Xchange for Mac User Guide Winter 2013 v2.3 Contents Welcome to Samsung Xchange IOS Desktop Client... 3 How to Install Samsung Xchange... 3 Where is it?... 4 The Dock menu... 4 The menu bar...

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

Re-syncing OneDrive for Business...1. User Instructions...1 Domain Computer... 1 Non-Domain Computer... 5. Technician Instructions...

Re-syncing OneDrive for Business...1. User Instructions...1 Domain Computer... 1 Non-Domain Computer... 5. Technician Instructions... Re-syncing OneDrive for Business...1 User Instructions...1 Domain Computer... 1 Non-Domain Computer... 5 Technician Instructions...9 OneDrive for Business iphone App... 13 Index If your University Email

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

The VB development environment

The VB development environment 2 The VB development environment This chapter explains: l how to create a VB project; l how to manipulate controls and their properties at design-time; l how to run a program; l how to handle a button-click

More information

An Introduction to Box.com

An Introduction to Box.com An Introduction to Box.com Box is an online file sharing and cloud content management service and it provides features such as: Security controls Space Mobility Online collaboration Mobile access Version

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or

More information

ATTENTION: End users should take note that Main Line Health has not verified within a Citrix

ATTENTION: End users should take note that Main Line Health has not verified within a Citrix Subject: Citrix Remote Access using PhoneFactor Authentication ATTENTION: End users should take note that Main Line Health has not verified within a Citrix environment the image quality of clinical cal

More information

Passport installation Windows 8 + Firefox

Passport installation Windows 8 + Firefox Passport installation Windows 8 + Firefox OS Version Windows 8 System Type 32-bit and 64-bit Browser name & version Firefox 23 Before you begin Check you have Anti Virus software installed on your computer

More information

How to create pop-up menus

How to create pop-up menus How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached

More information

Lesson 1 - Creating a C18 Project with MPLAB

Lesson 1 - Creating a C18 Project with MPLAB Lesson 1 - Creating a C18 Project with MPLAB Objectives To build a C18 project Identify the location of C18 program files Preparation: Microchip s MPLAB IDE and MPLAB C18 compiler are required for this

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Android App Development Lloyd Hasson 2015 CONTENTS. Web-Based Method: Codenvy. Sponsored by. Android App. Development

Android App Development Lloyd Hasson 2015 CONTENTS. Web-Based Method: Codenvy. Sponsored by. Android App. Development Android App Lloyd Hasson 2015 Web-Based Method: Codenvy This tutorial goes through the basics of Android app development, using web-based technology and basic coding as well as deploying the app to a virtual

More information

Version 4.1 USER S MANUAL Technical Support (800) 870-1101

Version 4.1 USER S MANUAL Technical Support (800) 870-1101 ESSENTIAL FORMS Version 4.1 USER S MANUAL Technical Support (800) 870-1101 401 Francisco St., San Francisco, CA 94133 (800) 286-0111 www.essentialpublishers.com (c) Copyright 2004 Essential Publishers,

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

Getting Started with KompoZer

Getting Started with KompoZer Getting Started with KompoZer Contents Web Publishing with KompoZer... 1 Objectives... 1 UNIX computer account... 1 Resources for learning more about WWW and HTML... 1 Introduction... 2 Publishing files

More information

Remote Access Enhancements

Remote Access Enhancements Remote Access Enhancements Citrix/Epic Set-up Instructions Provided By: Akron Children s IT Department Date: 7/11/2012 Version: v6 2012 Children s Hospital Medical Center of Akron Table of Contents 1.

More information

Chief Architect X6. Download & Installation Instructions. Chief Architect, Inc. 6500 N. Mineral Dr. Coeur d Alene, Idaho 83815 www.chiefarchitect.

Chief Architect X6. Download & Installation Instructions. Chief Architect, Inc. 6500 N. Mineral Dr. Coeur d Alene, Idaho 83815 www.chiefarchitect. Chief Architect X6 Download & Installation Instructions Chief Architect, Inc. 6500 N. Mineral Dr. Coeur d Alene, Idaho 83815 www.chiefarchitect.com Contents Chapter 1: Installation What s Included with

More information

Adobe Acrobat Professional DC Tutorial

Adobe Acrobat Professional DC Tutorial Adobe Acrobat Professional DC Tutorial ADOBE ACROBAT Adobe Acrobat is a software program used to create forms, manuals, online book pages, maps and drafted images, that can be uploaded to a website, and

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

HIT THE GROUND RUNNING MS WORD INTRODUCTION

HIT THE GROUND RUNNING MS WORD INTRODUCTION HIT THE GROUND RUNNING MS WORD INTRODUCTION MS Word is a word processing program. MS Word has many features and with it, a person can create reports, letters, faxes, memos, web pages, newsletters, and

More information

Hosting Users Guide 2011

Hosting Users Guide 2011 Hosting Users Guide 2011 eofficemgr technology support for small business Celebrating a decade of providing innovative cloud computing services to small business. Table of Contents Overview... 3 Configure

More information

D2L: An introduction to CONTENT University of Wisconsin-Parkside

D2L: An introduction to CONTENT University of Wisconsin-Parkside D2L: An introduction to CONTENT University of Wisconsin-Parkside FOR FACULTY: What is CONTENT? The Content and Course Builder tools both allow you to organize materials in D2L. Content lets you and your

More information

Introduction to OS X (10.4)

Introduction to OS X (10.4) Introduction to OS X (10.4) Parts of OS X Desktop, menu bar, disks, dock Home: documents and desktop Apple Menu and the active application How things are organized in OS X Things you should know Labels

More information

Microsoft Word Basics Workshop

Microsoft Word Basics Workshop Microsoft Word Basics Workshop Microsoft Word is the most commonly used word processing software program in the world. Most likely, you use it on your computer regularly, yet you may have never really

More information

UML Class Diagrams (1.8.7) 9/2/2009

UML Class Diagrams (1.8.7) 9/2/2009 8 UML Class Diagrams Java programs usually involve multiple classes, and there can be many dependencies among these classes. To fully understand a multiple class program, it is necessary to understand

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin:

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin: CONTENT MANAGER GUIDELINES Content Manager is a web-based application created by Scala that allows users to have the media they upload be sent out to individual players in many locations. It includes many

More information

This Manual contains the following How To information:

This Manual contains the following How To information: This Manual contains the following How To information: I. How to Register a Humminbird Product II. How to Download HumminbirdPC III. How to Download and Install Humminbird Software Upgrades IV. How to

More information

Table of Contents. Speedi WIN Online Page 1 of 44 Speedi-WIN Online Install Instructions

Table of Contents. Speedi WIN Online Page 1 of 44 Speedi-WIN Online Install Instructions Speedi WIN Online Page 1 of 44 Speedi-WIN Online Install Instructions Table of Contents Logging on to Speedi-WIN Online... 3 Installing Citrix Receiver... 7 Launching Speedi-WIN Online... 11 Existing Speedi-WIN

More information

Voice-Over PowerPoint (VOPP) and FTP Instructions for Online Courses (for Windows PC Computers) December 2009

Voice-Over PowerPoint (VOPP) and FTP Instructions for Online Courses (for Windows PC Computers) December 2009 Voice-Over PowerPoint (VOPP) and FTP Instructions for Online Courses (for Windows PC Computers) December 2009 A. How to add narration to a PowerPoint presentation: 1. Attach a microphone to your computer

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information