#include <Gamer.h> Gamer gamer; void setup() { gamer.begin(); } void loop() {

Size: px
Start display at page:

Download "#include <Gamer.h> Gamer gamer; void setup() { gamer.begin(); } void loop() {"

Transcription

1 #include <Gamer.h> Gamer gamer; void setup() { gamer.begin(); void loop() {

2 Gamer Keywords Inputs Board Pin Out Library Instead of trying to find out which input is plugged into which pin, you can use the following keywords as references to the pin numbers. For example, if you want to check if the up button is pressed, use the function ispressed(up); Use these functions to check if buttons are pressed or held. You can also read the raw value of the light dependent resistor. bool ispressed(uint8_t input); Want to get more creative with your DIY Gamer Kit? Well here s a helping hand to get you on your way. A cheat sheet with code and Arduino layout for you to refer to whenever you re stuck in your electronic exploration. Make, Play, Code and Invent! #define UP 0 #define LEFT 1 #define RIGHT 2 #define DOWN 3 #define START 4 #define LDR 5 Setup It s very important to call the begin() function in your Arduino sketch, specifically within your setup function. This makes sure that all pins are set to inputs or outputs and prepares the hardware. Returns true if the button is pressed. (unique press!) bool isheld(uint8_t input); Returns true if the button is held. (continuous press!) int ldrvalue(); Returns the raw value of the LDR. void setldrthreshold(uint16_t threshold); If you treat the LDR as a button, this sets its trigger theshold. void setled(bool value); void begin(); Sets the programmable LED to either HIGH or LOW. void toggleled(); Outputs Toggles / flips the programmable LED s value. These functions help you write stuff to the display, as well as trigger the programmable red LED on the Gamer. Variables void setrefreshrate(uint16_t refreshrate); Sets the refresh rate of the display. void updatedisplay(); Converts your display array into binary and burns it to the display. void allon(); Turns on all of the pixels. void clear(); You have full access to two variables. The 2 dimensional display array holds your world of pixels. Whenever you call updatedisplay() the display array is converted to the image array. Each row of the display is one byte. All of the rows live inside the image array. Most of the time, you will want to manipulate the display array, but if you re a smarty-pants and you want to play around with more low-level things, feel free to tweak the bytes in the image array. It s your fault if it breaks though! Clears everything on the display. void printimage(byte* img); byte display[8][8]; byte image[8]; Made in Hackney, London Burns a byte image into the display.

3 Gamer Lettering gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[5] = B ; This sheet will help you to get coding and animating your own images on the gamer. We wanted to help you get started, so we created the DIY Gamer alphabet for you to use. Copy the code next to the associated letter to create it on screen. Look at the code closely and you can see how it correlates with the pixels of the screen. Use this system to design your own letter-forms and illustrations! gamer.image[3] = B ; gamer.image[0] = B ; gamer.image[6] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[0] = B ; gamer.image[3] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[5] = B ; gamer.image[6] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[6] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[5] = B ; gamer.image[6] = B ; gamer.image[5] = B ; gamer.image[0] = B ; gamer.image[3] = B ; gamer.image[4] = B ; gamer.image[6] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[5] = B ; gamer.image[6] = B ; Made in Hackney, London gamer.image[6] = B ; gamer.image[2] = B ; gamer.image[4] = B ;

4 Arduino Cheat Sheet Need a hand starting with your Arduino board and software? This sheet explains some of the basics to get you going on your coding adventure! Arduino Environment Software written using Arduino are called sketches. These sketches are written in the Arduino Integrated Development Environment (IDE). Sketches are saved with the file extension.ino. The IDE has features for cutting/pasting and for searching/ replacing text. The message area gives feedback while saving and exporting and also displays errors. The console displays text output by the Arduino environment including complete error messages and other information. The bottom righthand corner of the window displays the current board and serial port. The Toolbar Below are the toolbar functions you ll find when you open your Arduino software. Verify - Check your code for errors. Menus Edit Copy for Forum - Copies the code of your sketch to the clipboard in a form suitable for posting to the forum, complete with syntax colouring. Copy as HTML - Copies the code of your sketch to the clipboard as HTML, suitable for embedding in web pages. Sketch Verify/Compile - Checks your sketch for errors. Show Sketch Folder - Opens the current sketch folder. Add File - Adds a source file to the sketch (it will be copied from its current location). The new file appears in a new tab in the sketch window. Files can be removed from the sketch using the tab menu. Import Library - Adds a library to your sketch by inserting #include statements at the start of your code. Tools Sketch A sketch is the name that Arduino uses for a program. It s the unit of code that is uploaded to and run on an Arduino board. Code The setup() function is called when a sketch starts. Use it to initialize variables, pin modes, start using libraries, etc. The setup function will only run once, after each powerup or reset of the Arduino board. After creating a setup() function, the loop() function does precisely what its name suggests, and loops consecutively, allowing your program to change and respond as it runs. Code in the loop() section of your sketch is used to actively control the Arduino board. Arduino Layout The code below won t actually do anything, but its structure is useful for copying and pasting to get you started on any sketch of your own. It also shows you how to make comments in your code. Any line that starts with two slashes (//) will not be read by the compiler, so you can write anything you want after it. Commenting your code like this can be particularly helpful in explaining, both to yourself and others, how your program functions step by step. void setup() { // put your setup code here, to run once: void loop() { // put your main code here, to run repeatedly: The basic components on your Arduino board have been labelled below. These are the ones you will need to know about to get you started with Arduino. Upload - Compiles your code and uploads it to the Arduino I/O board. New - Creates a new sketch. Open - Presents a menu of all the sketches in your sketchbook. Clicking one will open it within the current window. Save - Saves your sketch. Serial Monitor - Opens the serial monitor. Auto Format - This formats your code nicely: i.e. indents it so that opening and closing curly braces line up, and that the statements inside curly braces are indented more. Archive Sketch - Archives a copy of the current sketch in.zip format. The archive is placed in the same directory as the sketch. Board - Select the board that you re using. Serial Port - This menu contains all the serial devices (real or virtual) on your machine. It should automatically refresh every time you open the top-level tools menu. Analog Pins Microcontroller Chip Power LED Digital Pins Power Pins Input LED Oscillator Power Input USB Connection Reset Button Made in Hackney, London

5 Animation Generator Animation Generator Toolbar Press i to invert your image Paint mode Erase mode Wish that stick man you just drew could jump and run...now he can! As the animation generator allows you to combine single frames you ve drawn in order to create an animation. Repeat this step until you are happy with your animation. You can skip between frames and edit them using the left and right keys. Hold shift and click with your mouse to erase. Copy Code Want to draw images for your gamer but don t want to have to code it? The Animation Generator allows you to create images using a piece of specially designed software which generates code from your drawings. Which you can then upload to your gamer. It also allows you to build animations for your Gamer with no coding required. Press s to save Press c to copy to clipboard Press + to add a blank frame Press Shift and f to duplicate the current frame Press - to remove the current frame Press x to start from scratch Left and Right keys navigate between frames Spacebar toggles playback Press h to toggle help bar Press backspace to clear Image Example Start by opening your GamerAnimPainter.pde file in Processing. Press open. Draw your image (run) and the sketch will Then hit c to Copy your code to your clipboard. Then head to Ardunio open File > Examples > Gamer > Alien. Delete existing code between the lines: Gamer gamer and void setup() then paste your copied code from the clipboard here and hit Upload. Animation Example This example will show you how to use the animator to create a stereo levels animation. Start by opening your GamerAnimGenerator.pde file in Processing. Press open. Draw your first frame (run) and the sketch will Save Save animation Clear all frames Previous frame Once you ve drawn all your frames, preview your animation by pressing the spacebar. Next frame Add blank frame Duplicate current frame Or... Press Shift and f. This will duplicate the current frame. Then draw the next frame. Finally hit c to Copy your code to your clipboard. Then head to Ardunio and open - File > Examples > Gamer > Animationexample and delete existing code where it states. Replace this with yours! Then paste your copied code from the clipboard here and hit Upload. Remove frame Made in Hackney, London Load Load animation Toggle playback

6 Design your animation Want to create an animation for your DIY Gamer but want to map it out before you start coding it or inputting it into our animation software? This worksheet is for you to print off and use as a template to sketch out frame by frame what you want your animation to look like. Example Use this worksheet to design and plan out the animation you want to create for your DIY Gamer. Sketch and make notes so you know exactly how your animation will work. Frame 1: Stationary alien. Frame 2: Alien mid-jump. Frame 3: Alien full jump. Frame 4: Alien mid-landing...

7 Cheat Keywords Inputs void setled(bool value); Board Pin Out Sheet Want to get more creative with your DIY Gamer Kit? Well here s a helping hand to get you on your way. A cheat sheet with code and Arduino layout for you to refer to whenever you re stuck in your electronic exploration. Make, Play, Code and Invent! Instead of trying to find out which input is plugged into which pin, you can use the following keywords as references to the pin numbers. For example, if you want to check if the up button is pressed, use ispressed(up); #define UP 0 #define LEFT 1 #define RIGHT 2 #define DOWN 3 #define START 4 #define LDR 5 Setup It s very important to call the begin() function in your Arduino sketch, specifically within your setup function. This makes sure that all pins are set to inputs or outputs and prepares the hardware. void begin(); Use these functions to check if buttons are pressed or held. You can also read the raw value of the light dependent resistor. bool ispressed(uint8_t input); Returns true if the button is pressed. (unique press!) bool isheld(uint8_t input); Returns true if the button is held. (continuous press!) int ldrvalue(); Returns the raw value of the LDR. void setldrthreshold(uint16_t threshold); If you treat the LDR as a button, this sets its trigger theshold. Outputs These functions help you write stuff to the display, as well as trigger the programmable red LED on the Gamer. Sets the programmable LED to either HIGH or LOW. void toggleled(); Toggles / flips the programmable LED s value. Variables You have full access to two variables. The 2 dimensional display array holds your world of pixels. Whenever you call updatedisplay() the display array is converted to the image array. Each row of the display is one byte. All of the rows live inside the image array. Most of the time, you will want to manipulate the display array, but if you re a smartypants and you want to play around with more low-level things, feel free to tweak the bytes in the image array. It s your fault if it breaks though! byte display[8][8]; byte image[8]; void setrefreshrate(uint16_t refreshrate); Sets the refresh rate of the display. void updatedisplay(); Converts your display array into binary and burns it to the display. void allon(); Turns on all of the pixels. void clear(); Clears everything on the display. void printimage(byte* img); Made Hackney, London Burns a byte image into the display.

8 Cheat Sheet gamer.image[5] = B ; This sheet will help you to get coding and animating your own images on the gamer. We wanted to help you get started, so we created the DIY Gamer alphabet for you to use. Copy the code next to the associated letter to create it on screen. Look at the code closely and you can see how it correlates with the pixels of the screen. Use this system to design your own letter-forms and illustrations! gamer.image[3] = B ; gamer.image[0] = B ; gamer.image[6] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[6] = B ; gamer.image[5] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[5] = B ; gamer.image[6] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[0] = B ; gamer.image[3] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[6] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[5] = B ; gamer.image[6] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[4] = B ; gamer.image[5] = B ; gamer.image[0] = B ; gamer.image[3] = B ; gamer.image[4] = B ; gamer.image[6] = B ; gamer.image[0] = B ; gamer.image[1] = B ; gamer.image[2] = B ; gamer.image[3] = B ; gamer.image[5] = B ; gamer.image[6] = B ; Made Hackney, London

9 Arduino Cheat Sheet Need a hand starting with your Arduino board and software? This sheet explains some of the basics to get you going on your coding adventure! Made Hackney, London Arduino Environment Software written using Arduino are called sketches. These sketches are written in the Arduino Integrated Development Environment (IDE). Sketches are saved with the file extension.ino. The IDE has features for cutting/pasting and for searching/ replacing text. The message area gives feedback while saving and exporting and also displays errors. The console displays text output by the Arduino environment including complete error messages and other information. The bottom righthand corner of the window displays the current board and serial port. The Toolbar Below are the toolbar functions you ll find when you open your Arduino software. Verify - Check your code for errors. Upload - Compiles your code and uploads it to the Arduino I/O board. New - Creates a new sketch. Open - Presents a menu of all the sketches in your sketchbook. Clicking one will open it within the current window. Save - Saves your sketch. Serial Monitor - Opens the serial monitor. Menus Edit Copy for Forum - Copies the code of your sketch to the clipboard in a form suitable for posting to the forum, complete with syntax colouring. Copy as HTML - Copies the code of your sketch to the clipboard as HTML, suitable for embedding in web pages. Sketch Verify/Compile - Checks your sketch for errors. Show Sketch Folder - Opens the current sketch folder. Add File - Adds a source file to the sketch (it will be copied from its current location). The new file appears in a new tab in the sketch window. Files can be removed from the sketch using the tab menu. Import Library - Adds a library to your sketch by inserting #include statements at the start of your code. Tools Auto Format - This formats your code nicely: i.e. indents it so that opening and closing curly braces line up, and that the statements inside curly braces are indented more. Archive Sketch - Archives a copy of the current sketch in.zip format. The archive is placed in the same directory as the sketch. Board - Select the board that you re using. Serial Port - This menu contains all the serial devices (real or virtual) on your machine. It should automatically refresh every time you open the top-level tools menu. Sketch A sketch is the name that Arduino uses for a program. It s the unit of code that is uploaded to and run on an Arduino board. Code The setup() function is called when a sketch starts. Use it to initialize variables, pin modes, start using libraries, etc. The setup function will only run once, after each powerup or reset of the Arduino board. After creating a setup() function, the loop() function does precisely what its name suggests, and loops consecutively, allowing your program to change and respond as it runs. Code in the loop() section of your sketch is used to actively control the Arduino board. The code below won t actually do anything, but its structure is useful for copying and pasting to get you started on any sketch of your own. It also shows you how to make comments in your code. Any line that starts with two slashes (//) will not be read by the compiler, so you can write anything you want after it. Commenting your code like this can be particularly helpful in explaining, both to yourself and others, how your program functions step by step. void setup() { // put your setup code here, to run once: void loop() { // put your main code here, to run repeatedly: Arduino Layout The basic components on your Arduino board have been labelled below. These are the ones you will need to know about to get you started with Arduino. Input LED Digital Pins Reset Button Power LED USB Connection Microcontroller Chip Analog Pins Power Input Power Pins Oscillator

10 Image Painter Image Painter Toolbar Press backspace to clear the page Press i to invert your image Animation Generator Example This example will show you how to use the animator to create a stereo levels animation. Repeat this step until you are happy with your animation. You can skip between frames and edit them using the left and right keys. Want to draw images for your gamer but don t want to have to code it? The Image Painter allows you to create images using a piece of specially designed software which generates code from your drawings. Which you can then upload to your gamer. Hold shift and click with your mouse to erase. Press s to save Press c to copy to clipboard Example Wish that stick man you just drew could jump and run...now he can! The Animation Generator works very similarly to the Image Painter but allows you to combine single frames you ve drawn in order to create an animation. Start by opening your GamerAnimGenerator.pde file in Processing. Press open. Draw your first frame (run) and the sketch will Start by opening your GamerImagePainter.pde file in Processing. Press open. (run) and the sketch will Animation Generator Toolbar Draw your image Press i to invert your image Hold shift and click with your mouse to erase. Press s to save Press c to copy to clipboard Press + to add a blank frame Press Shift and f. This will duplicate the current frame. Then draw the next frame Press Shift and f to duplicate the current frame Press - to remove the current frame Once you ve drawn all your frames, preview your animation by pressing the spacebar. Made Hackney, London Then hit c to Copy your code to your clipboard. Then head to Ardunio open File > Examples > Gamer > Alien. Delete existing code between the lines: Gamer gamer and void setup() then paste your copied code from the clipboard here and hit Upload. Press x to start from scratch Left and Right keys navigate between frames Spacebar toggles playback Press h to toggle help bar Press backspace to clear Finally hit c to Copy your code to your clipboard. Then head to Ardunio and open - File > Examples > Gamer > Animationexample and delete existing code where it states. Replace this with yours! Then paste your copied code from the clipboard here and hit Upload.

11 Design your game Want to create an game for your DIY Gamer but want to map it out before you start coding it or inputting it into our animation software? These worksheets are for you to print off and use as templates to think about, design and sketch out frame by frame what you want your game to be. Use the spaces on this page to plan in detail your game. First things first! What is your game about? Is it a game with a spaceship, football game or puzzle game? Sketch out some ideas here... Ball, person or alien, every game needs characters. What are yours? What is the challenge or enemy in your game? What is the scoring system for when you crash your spaceship or solve a puzzle? Are there different levels to your game or does it endlessly scroll? What are the boundaries? What does your game look like/ what is the environment? Mars or Jupiter, Anfield or Wembley! How is the player going to interact with the game? What do the controls do? Will there be sound in your game? What will it be used for?

12 Design your game Use the boxes below to use bring your plans to life on your Gamer screen!

13 #include <Gamer.h> Gamer gamer; byte alien1[] = { B , B , B , B , B , B , B , B ; byte alien2[] = { B , B , B , B , B , B , B , B ; void setup() { gamer.begin(); gamer.printimage(alien1); void loop() { if(gamer.ispressed(up)) { gamer.printimage(frames[0]); //gamer.printimage(alien2); if(gamer.ispressed(down)) { gamer.printimage(alien1);

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Lesson 8: Simon - Arrays

Lesson 8: Simon - Arrays Lesson 8: Simon - Arrays Introduction: As Arduino is written in a basic C programming language, it is very picky about punctuation, so the best way to learn more complex is to pick apart existing ones.

More information

How to Add Users 1. 2.

How to Add Users 1. 2. Administrator Guide Contents How to Add Users... 2 How to Delete a User... 9 How to Create Sub-groups... 12 How to Edit the Email Sent Out to New Users... 14 How to Edit and Add a Logo to Your Group's

More information

Arduino Lesson 1. Blink

Arduino Lesson 1. Blink Arduino Lesson 1. Blink Created by Simon Monk Last updated on 2015-01-15 09:45:38 PM EST Guide Contents Guide Contents Overview Parts Part Qty The 'L' LED Loading the 'Blink' Example Saving a Copy of 'Blink'

More information

Web Forms. Step One: Review Simple Contact Form

Web Forms. Step One: Review Simple Contact Form Web Forms Follow these instructions to create a Simple Contact Form to place in your email signature or the body of an email. Keep reading to create a form specifically for an agent. Step One: Review Simple

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

An Introduction to MPLAB Integrated Development Environment

An Introduction to MPLAB Integrated Development Environment An Introduction to MPLAB Integrated Development Environment 2004 Microchip Technology Incorporated An introduction to MPLAB Integrated Development Environment Slide 1 This seminar is an introduction to

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades. 28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML

More information

Microsoft Publisher 2010: Web Site Publication

Microsoft Publisher 2010: Web Site Publication Microsoft Publisher 2010: Web Site Publication Application Note Team 6 Darci Koenigsknecht November 14, 2011 Table of Contents ABSTRACT... 3 INTRODUCTION... 3 KEYWORDS... 3 PROCEDURE... 4 I. DESIGN SETUP...

More information

Basic Use of the SPC Feature on 1100R+/H+ Testers

Basic Use of the SPC Feature on 1100R+/H+ Testers Basic Use of the SPC Feature on 1100R+/H+ Testers Basics 1100 SPC Data (Note: SPC data collection is an optional feature only available on 1100R+/H+ testers that are equipped with USB ports For the feature

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Terminal Four (T4) Site Manager

Terminal Four (T4) Site Manager Terminal Four (T4) Site Manager Contents Terminal Four (T4) Site Manager... 1 Contents... 1 Login... 2 The Toolbar... 3 An example of a University of Exeter page... 5 Add a section... 6 Add content to

More information

Making a Web Page with Microsoft Publisher 2003

Making a Web Page with Microsoft Publisher 2003 Making a Web Page with Microsoft Publisher 2003 The first thing to consider when making a Web page or a Web site is the architecture of the site. How many pages will you have and how will they link to

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

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

Umbraco Content Management System (CMS) User Guide

Umbraco Content Management System (CMS) User Guide Umbraco Content Management System (CMS) User Guide Content & media At the bottom-left of the screen you ll see 2 main sections of the CMS Content and Media. Content is the section that displays by default

More information

Waspmote IDE. User Guide

Waspmote IDE. User Guide Waspmote IDE User Guide Index Document Version: v4.1-01/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 1.1. New features...3 1.2. Other notes...3 2. Installation... 4 2.1. Windows...4

More information

The Microsoft Access 2007 Screen

The Microsoft Access 2007 Screen 1 of 1 Office Button The Microsoft Access 2007 Screen Title Bar Help Ribbon Quick Access Toolbar Database Components Active Component NOTE: THIS HELP DOCUMENT EXPLAINS THE LAYOUT OF ACCESS. FOR MORE INFORMATION

More information

IT Quick Reference Guides Using Windows 7

IT Quick Reference Guides Using Windows 7 IT Quick Reference Guides Using Windows 7 Windows Guides This sheet covers many of the basic commands for using the Windows 7 operating system. WELCOME TO WINDOWS 7 After you log into your machine, the

More information

Access Central 4.2 Tenant Billing

Access Central 4.2 Tenant Billing Access Central 4.2 Tenant Billing Software Package Access Central/Tenant Billing is comprised of four executable programs which all must reside in the subdirectory named: c:\tc85dir 1. ACCESS CENTRAL.MDB

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

Windows 7 for beginners

Windows 7 for beginners Windows 7 for beginners Hardware Hardware: the physical parts of a computer. What s in the computer? CPU: the central processing unit processes information (the brain) Hard drive: where all of your software

More information

Tera Term Telnet. Introduction

Tera Term Telnet. Introduction Tera Term Telnet Introduction Starting Telnet Tera Term is a terminal emulation program that enables you to log in to a remote computer, provided you have a registered account on that machine. To start

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

itunes Basics Website: http://etc.usf.edu/te/

itunes Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ itunes is the digital media management program included in ilife. With itunes you can easily import songs from your favorite CDs or purchase them from the itunes Store.

More information

Manual. OIRE Escuela de Profesiones de la Salud. Power Point 2007

Manual. OIRE Escuela de Profesiones de la Salud. Power Point 2007 Power Point 2007 Manual OIRE Escuela de Profesiones de la Salud Power Point 2007 2008 The New Power Point Interface PowerPoint is currently the most common software used for making visual aids for presentations.

More information

CREATING YOUR OWN PROFESSIONAL WEBSITE

CREATING YOUR OWN PROFESSIONAL WEBSITE First go to Google s main page (www.google.com). If you don t already have a Gmail account you will need one to continue. Click on the Gmail link and continue. 1 Go ahead and sign in if you already have

More information

Chapter 12 Creating Web Pages

Chapter 12 Creating Web Pages Getting Started Guide Chapter 12 Creating Web Pages Saving Documents as HTML Files Copyright This document is Copyright 2010 2012 by its contributors as listed below. You may distribute it and/or modify

More information

Tutorial for MPLAB Starter Kit for PIC18F

Tutorial for MPLAB Starter Kit for PIC18F Tutorial for MPLAB Starter Kit for PIC18F 2006 Microchip Technology Incorporated. All Rights Reserved. WebSeminar Title Slide 1 Welcome to the tutorial for the MPLAB Starter Kit for PIC18F. My name is

More information

IOIO for Android Beginners Guide Introduction

IOIO for Android Beginners Guide Introduction IOIO for Android Beginners Guide Introduction This is the beginners guide for the IOIO for Android board and is intended for users that have never written an Android app. The goal of this tutorial is to

More information

Compaq Presario MyMovieSTUDIO. Getting Started

Compaq Presario MyMovieSTUDIO. Getting Started Compaq Presario MyMovieSTUDIO Getting Started Congratulations and welcome to the Compaq Presario MyMovieSTUDIO leading edge digital video editing and DVD authoring desktop computer. You ve purchased a

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

WebPlus X7. Quick Start Guide. Simple steps for designing your site and getting it online.

WebPlus X7. Quick Start Guide. Simple steps for designing your site and getting it online. WebPlus X7 Quick Start Guide Simple steps for designing your site and getting it online. In this guide, we will refer to specific tools, toolbars, tabs, or options. Use this visual reference to help locate

More information

USING WINDOWS MOVIE MAKER TO CREATE THE MOMENT BEHIND THE PHOTO STORY PART 1

USING WINDOWS MOVIE MAKER TO CREATE THE MOMENT BEHIND THE PHOTO STORY PART 1 PART 1 Windows Movie Maker lets you assemble a range of video, pictures, and sound elements to create a story. It is an application that comes with most PC computers. This tip sheet was created using Windows

More information

WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER

WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER WINDOWS 7 MANAGE FILES AND FOLDER WITH WINDOWS EXPLORER Last Edited: 2012-07-10 1 Introduce Windows Explorer... 3 Navigate folders and their contents... 5 Organize files and folders... 8 Move or copy files

More information

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family Renesas Capacitive Touch Lab R8C/36T-A Family Description: This lab will cover the Renesas Touch Solution for embedded capacitive touch systems. This lab will demonstrate how to setup and run a simple

More information

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0 University of Sheffield PART 1 1.1 Getting Started 1. Log on to the computer with your usual username

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

Teacher Training Session 1. Adding a Sub-Site (New Page) Editing a page and page security. Adding content cells. Uploading files and creating folders

Teacher Training Session 1. Adding a Sub-Site (New Page) Editing a page and page security. Adding content cells. Uploading files and creating folders Teacher Training Session 1 Adding a Sub-Site (New Page) Editing a page and page security Adding content cells Uploading files and creating folders Adding Sub Sites Sub Sites are the same as Sub Groups

More information

Creating Online Surveys with Qualtrics Survey Tool

Creating Online Surveys with Qualtrics Survey Tool Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this

More information

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc.

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc. NDA-30141 ISSUE 1 STOCK # 200893 CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000 NEC America, Inc. LIABILITY DISCLAIMER NEC America, Inc. reserves the right to change the specifications,

More information

Create a Website with Weebly

Create a Website with Weebly solution 1 Create a Website with Weebly More than ever, parents want to know exactly what s going on in the classroom. I ve found that using only a monthly newsletter and a yearly parent-teacher conference

More information

RIMS Community Microsite Content Management System Training

RIMS Community Microsite Content Management System Training RIMS Community Microsite Content Management System Training Table of Contents Site setup o Hands on Training: Configure your Contact Us page Content Management System o Navigation Items/Pages Overview

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

Creating PDF Forms in Adobe Acrobat

Creating PDF Forms in Adobe Acrobat Creating PDF Forms in Adobe Acrobat Flinders University Centre for Educational ICT Contents What are PDF forms?... 1 Viewing a PDF form... 1 Types of PDF forms... 1 Printing and saving PDF forms... 1 Forms

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

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Activity Builder TP-1908-V02

Activity Builder TP-1908-V02 Activity Builder TP-1908-V02 Copyright Information TP-1908-V02 2014 Promethean Limited. All rights reserved. All software, resources, drivers and documentation supplied with the product are copyright Promethean

More information

Microsoft Word 2010 Training

Microsoft Word 2010 Training Microsoft Word 2010 Training Microsoft Word 102 Instructor: Debbie Minnerly Course goals Learn how to work with paragraphs. Set tabs and work with tables. Learn about styles Use the spelling and grammar

More information

Create Mailing Labels from an Electronic File

Create Mailing Labels from an Electronic File Create Mailing Labels from an Electronic File Microsoft Word 2002 (XP) Electronic data requests for mailing labels will be filled by providing the requester with a commadelimited text file. When you receive

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

Fireworks 3 Animation and Rollovers

Fireworks 3 Animation and Rollovers Fireworks 3 Animation and Rollovers What is Fireworks Fireworks is Web graphics program designed by Macromedia. It enables users to create any sort of graphics as well as to import GIF, JPEG, PNG photos

More information

Task Card #2 SMART Board: Notebook

Task Card #2 SMART Board: Notebook Task Card #2 SMART Board: Notebook Objectives: Participants will learn how to utilize the SMART Notebook. Table of Contents: Launching The SMART Notebook Page 1 Entering Text Page 1 Top Toolbar Page 2

More information

OpenOffice Installation and Usage Guide

OpenOffice Installation and Usage Guide OpenOffice Installation and Usage Guide Updated October 1, 2013 by Chad Edwards Revisions to this document will be applied as needed, based on frequently asked questions and support requests. For questions,

More information

Editing your Website User Guide

Editing your Website User Guide User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already

More information

Using SSH Secure File Transfer to Upload Files to Banner

Using SSH Secure File Transfer to Upload Files to Banner Using SSH Secure File Transfer to Upload Files to Banner Several Banner processes, including GLP2LMP (Create PopSelect Using File), require you to upload files from your own computer to the computer system

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

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual Training A brief overview of your website s content management system () with screenshots. 1 Contents Logging In:...3 Dashboard:...4 Page List / Search Filter:...5 Common Icons:...6 Adding a New Page:...7

More information

WebPlus X8. Quick Start Guide. Simple steps for designing your site and getting it online.

WebPlus X8. Quick Start Guide. Simple steps for designing your site and getting it online. WebPlus X8 Quick Start Guide Simple steps for designing your site and getting it online. In this guide, we will refer to specific tools, toolbars, tabs, or options. Use this visual reference to help locate

More information

Instructions for creating a profile in PATS, the Providence Applicant Tracking System internal candidates

Instructions for creating a profile in PATS, the Providence Applicant Tracking System internal candidates 1. Access PATS at www.providenceschools.org/pats - the page looks like this: 2. If you are a PPSD employee, select the link labeled Current Employees (Internal Applicants) which will take you to the Providence

More information

Exercise 1 : Branding with Confidence

Exercise 1 : Branding with Confidence EPrints Training: Repository Configuration Exercises Exercise 1 :Branding with Confidence 1 Exercise 2 :Modifying Phrases 5 Exercise 3 :Configuring the Deposit Workflow 7 Exercise 4 :Controlled Vocabularies

More information

AN INTRODUCTION TO DIAMOND SCHEDULER

AN INTRODUCTION TO DIAMOND SCHEDULER AN INTRODUCTION TO DIAMOND SCHEDULER Draft 11/26/2014 Note: Please send suggestions to jhall@cactusware.com Cactusware, LLC AN INTRODUCTION TO DIAMOND SCHEDULER WELCOME Welcome to Diamond Scheduler Sports

More information

Creating an Email with Constant Contact. A step-by-step guide

Creating an Email with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

Creating an Email with Constant Contact. A step-by-step guide

Creating an Email with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Quick Start Guide Simple steps for editing and manipulating your photo.

Quick Start Guide Simple steps for editing and manipulating your photo. PhotoPlus Quick Start Guide Simple steps for editing and manipulating your photo. In this guide, we will refer to specific tools, toolbars, tabs, or menus. Use this visual reference to help locate them

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

SMART Board Interactive Whiteboard Setup with USB Cable

SMART Board Interactive Whiteboard Setup with USB Cable SMART Board Interactive Whiteboard Setup with USB Cable The instructions below are for the SMART Board interactive whiteboard 500 series and apply to both desktop and laptop computers. Ready Light USB

More information

Animated Lighting Software Overview

Animated Lighting Software Overview Animated Lighting Software Revision 1.0 August 29, 2003 Table of Contents SOFTWARE OVERVIEW 1) Dasher Pro and Animation Director overviews 2) Installing the software 3) Help 4) Configuring the software

More information

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you, support@elmcomputers.

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you, support@elmcomputers. This list of shortcut key combinations for Microsoft Windows is provided by ELM Computer Systems Inc. and is compiled from information found in various trade journals and internet sites. We cannot guarantee

More information

Bank Reconciliation User s Guide

Bank Reconciliation User s Guide Bank Reconciliation User s Guide Version 7.5 2210.BR75 2008 Open Systems Holdings Corp. All rights reserved. Document Number 2210.BR75 No part of this manual may be reproduced by any means without the

More information

Adobe Acrobat: Creating Interactive Forms

Adobe Acrobat: Creating Interactive Forms Adobe Acrobat: Creating Interactive Forms This document provides information regarding creating interactive forms in Adobe Acrobat. Please note that creating forms requires the professional version (not

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Install MS SQL Server 2012 Express Edition

Install MS SQL Server 2012 Express Edition Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other

More information

Mastering the JangoMail EditLive HTML Editor

Mastering the JangoMail EditLive HTML Editor JangoMail Tutorial Mastering the JangoMail EditLive HTML Editor With JangoMail, you have the option to use our built-in WYSIWYG HTML Editors to compose and send your message. Note: Please disable any pop

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

Joomla Article Advanced Topics: Table Layouts

Joomla Article Advanced Topics: Table Layouts Joomla Article Advanced Topics: Table Layouts An HTML Table allows you to arrange data text, images, links, etc., into rows and columns of cells. If you are familiar with spreadsheets, you will understand

More information

File Management Windows

File Management Windows File Management Windows : Explorer Navigating the Windows File Structure 1. The Windows Explorer can be opened from the Start Button, Programs menu and clicking on the Windows Explorer application OR by

More information

Flash MX Image Animation

Flash MX Image Animation Flash MX Image Animation Introduction (Preparing the Stage) Movie Property Definitions: Go to the Properties panel at the bottom of the window to choose the frame rate, width, height, and background color

More information

System Overview and Terms

System Overview and Terms GETTING STARTED NI Condition Monitoring Systems and NI InsightCM Server Version 2.0 This document contains step-by-step instructions for the setup tasks you must complete to connect an NI Condition Monitoring

More information

Your First App Store Submission

Your First App Store Submission Your First App Store Submission Contents About Your First App Store Submission 4 At a Glance 5 Enroll in the Program 5 Provision Devices 5 Create an App Record in itunes Connect 5 Submit the App 6 Solve

More information

testo easyheat Configuration and Analysis software Instruction manual

testo easyheat Configuration and Analysis software Instruction manual testo easyheat Configuration and Analysis software Instruction manual en 2 General Information General Information This documentation includes important information about the features and application of

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Quick Reference Guide

Quick Reference Guide Simplified Web Interface for Teachers Quick Reference Guide Online Development Center Site Profile 5 These fields will be pre-populated with your information { 1 2 3 4 Key 1) Website Title: Enter the name

More information

Where do I start? DIGICATION E-PORTFOLIO HELP GUIDE. Log in to Digication

Where do I start? DIGICATION E-PORTFOLIO HELP GUIDE. Log in to Digication You will be directed to the "Portfolio Settings! page. On this page you will fill out basic DIGICATION E-PORTFOLIO HELP GUIDE Where do I start? Log in to Digication Go to your school!s Digication login

More information

Importing Contacts to Outlook

Importing Contacts to Outlook Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2

More information

Lab 1: Introduction to Xilinx ISE Tutorial

Lab 1: Introduction to Xilinx ISE Tutorial Lab 1: Introduction to Xilinx ISE Tutorial This tutorial will introduce the reader to the Xilinx ISE software. Stepby-step instructions will be given to guide the reader through generating a project, creating

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

Contents. SiteBuilder User Manual

Contents. SiteBuilder User Manual Contents Chapter 1... 3 Getting Started with SiteBuilder... 3 What is SiteBuilder?... 3 How should I use this manual?... 3 How can I get help if I m stuck?... 3 Chapter 2... 5 Creating Your Website...

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Design document Goal Technology Description

Design document Goal Technology Description Design document Goal OpenOrienteering Mapper is a program to draw orienteering maps. It helps both in the surveying and the following final drawing task. Support for course setting is not a priority because

More information

Using MindManager 14

Using MindManager 14 Using MindManager 14 Susi Peacock, Graeme Ferris, Susie Beasley, Matt Sanders and Lindesay Irvine Version 4 September 2014 2011 Queen Margaret University 1. Navigating MindManager 14... 3 Tool Bars and

More information

BreezingForms Guide. 18 Forms: BreezingForms

BreezingForms Guide. 18 Forms: BreezingForms BreezingForms 8/3/2009 1 BreezingForms Guide GOOGLE TRANSLATE FROM: http://openbook.galileocomputing.de/joomla15/jooml a_18_formulare_neu_001.htm#t2t32 18.1 BreezingForms 18.1.1 Installation and configuration

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information