STRUCTURE AND FLOWS. By Hagan Rivers, Two Rivers Consulting FREE CHAPTER

Size: px
Start display at page:

Download "STRUCTURE AND FLOWS. By Hagan Rivers, Two Rivers Consulting FREE CHAPTER"

Transcription

1 UIE REPORTS FUNDAMENTALS SERIES T H E D E S I G N E R S G U I D E T O WEB APPLICATIONS PART I: STRUCTURE AND FLOWS By Hagan Rivers, Two Rivers Consulting FREE CHAPTER User Interface Engineering User Interface Engineering 510 Turnpike Street, Suite 102 North Andover, MA (978) or (800)

2 Table of Contents 1 Skeletons The Hub A Hub With No Data The Interview A Real Application: SupportSuite A simple hub and spoke or is it? An interview appears! Hubba hubba A hub for hubs Finishing touches Revealing Structure in the Design Tabs Menus Tab Menus Breadcrumbs Links Titles Progress Indicators Knowing which element to use Designing the structure Command Architecture Seeding the structure Enter the users As we learn more, more changes There are many possible structures Creating a Winning Design The structure of an application is like a human skeleton--it forms the basis of the whole body, yet it s hidden from view. Just as muscles and skin hang on a skeleton, every bit of text, every button, every list, and every link hang upon the application s structure. When we, as designers, sit down to decide how many screens to build, we are designing the structure. When we determine the items and the commands appearing on each screen, we are again designing the structure. This report will help you understand how to create your application s structure and how to hang your design on a structure, just as muscle and skin hang on a skeleton. We will study other applications and learn how to find the structure in them. Why study other web applications? Studying other designs improves our design skills. Each application we study will teach us more about design. We ll learn how to identify the application s structure. We ll recognize similarities in how different applications solve the same design problem. We ll see the design chosen for a given structure. We ll also begin recognizing patterns in the designs. Whether or not we formally write down these patterns, over time we ll remember them. Then, when we see a design problem, we ll draw upon all the applications we ve seen before to weigh different design solutions. With all that in mind, let s get started User Interface Engineering. Reproduction Prohibited 1

3 1.1 THE HUB There are two basic forms of application structure designers use repeatedly: the hub and the interview. The most common structure is a hub. Literally speaking, the hub is the center of a wheel. On a wagon wheel, there are spokes that radiate outward. In a web application, a hub is a center of activity a place from where all activities radiate, like spokes. Let s take a look at a very simple application in this case, a list of stuff (have you ever noticed how there is always a list of stuff?) and see this in action: Figure 1-1: A list of employees a simple hub Figure 1-1 shows a simple application listing a small company s employees. The list here shows employee Name, employee ID number, and the employee s Location. We can see from the Location column, the company has offices in four locations in Massachusetts. When studying an application s structure, we try to see past the details and visual style of the design and focus instead on the more abstract elements. In this case, there is a list of employees and there are some commands. For now, it doesn t matter whether the commands are links in a browser window or buttons in a desktop application when we re studying structure. However, it will matter a great deal later, when we turn the structure into a design. Above the data is a row of commands, arranged as a toolbar: Add, Delete, Import, Export, and Send Mail. There are some additional commands embedded within the table itself. For example, clicking on a name is equivalent to Edit. Clicking on ID in the table header will sort the table by ID and clicking on Location will sort the table by location. Finally, notice the table contains checkboxes for selecting employees. Users must select one or more checkboxes before they can use the commands for Delete, Export, and Send Mail User Interface Engineering. Reproduction Prohibited

4 When the user clicks on the Add button, a new screen opens, the Add Employee window (shown in Figure 1-2). Here users can type information for a new employee and then save it by pressing the Add button at the bottom. Figure 1-2: Clicking on the Add button opens Add Employee screen This new screen has just become the first spoke of our application s wheel. The hub, Employees, lies at the center of the wheel and users access spoke screens, like Add Employee, from the hub. When users finish working on the spoke screen, they return to the hub. You may have noticed we ve used the word screen here to describe both Employee List and Add Employee. In Figure 1-2, we ve shown them in two boxes side by side. Does this mean we have two side-by-side browser windows open? Or, are we suggesting Add Employee will replace the Employee List within the same browser window? Or, does the design intend to show the Add Employee screen using AJAX, layers, and Dynamic HTML, thereby covering the Employee List like a dialog window? From the standpoint of the application s structure, these are identical. It doesn t matter which technology you use to display the screen containing the Add Employee information. This screen is a spoke. It can appear in a new window, a new layer, or dynamically within the existing window. However, structurally speaking, it is different from the Employee List and that s all we need to know for now. We ll talk more about converting the application s structure into a design later on User Interface Engineering. Reproduction Prohibited 3

5 You can see a diagram of the screens in Figure 1-3. In a stunning bout of creativity, we ll call this a structure diagram. At this point the structure diagram doesn t really look like much of a hub more like an atom of hydrogen, but once we add in the other screens (Import, Export, Send, and Delete) to the diagram in Figure 1-4, then perhaps you ll agree it starts to look a bit more like a wagon wheel. Figure 1-3: Employees lie at the center of the hub and Add is a spoke screen What is a structure diagram and why do we use it? We like to use these diagrams as shorthand for visualizing the structure of our designs. It s a quick and easy way to communicate structure among our team members and to help everyone focus on the key parts of the design the hubs. Figure 1-4: The screens for this application form a hub and spoke-style wheel You ve probably noticed we haven t said anything specific to web applications. Is the application we ve been looking at a web application? It turns out hubs are a core element of any software application design, be it on the web or the desktop. We could implement this list of employees as either a desktop or a web-based application and, structurally speaking, they would be identical. You shouldn t limit yourself to studying the structure of only web-based applications User Interface Engineering. Reproduction Prohibited

6 1.2 A HUB WITH NO DATA As you might imagine, it s very common to form hubs around lists of information. However, hubs do not need to contain lists, nor do they need to contain any data at all. Here s another application this time we have a hub where users can manage their account information. Figure 1-5: A list of commands can also form a hub On the left in Figure 1-5, we have the center of the Hub Your Account. Unlike the previous example, this screen has no list. There isn t a list anywhere on this screen no employees, no account items, nothing. Instead, it contains a series of commands. In this figure, our user clicked the command, Change password, opening a spoke screen. To the right, you can see a structure diagram of this hub and all of its spokes. Voila! This hub even looks like it might hitch to a wagon. We ve stripped these examples of their context and visual style to make it easier to understand the hub structure. Most web applications are much more complex than the examples shown here. No matter the complexity, you ll probably find they consist of a series of hubs. Hubs are incredibly powerful. You can string them together to build large, highly complex applications. Let s explore what stringing hubs together might look like. We ll go back to the last hub and add a new section to the top, calling it Manage Lists. Then, we ll make the first item Employees. You can see what we have done in Figure User Interface Engineering. Reproduction Prohibited 5

7 Figure 1-6: Add a link for Employees to the Account screen to tie two hubs together Clicking on Employees in Figure 1-6 brings up the Employee list. Remember this screen? This is the first hub we analyzed in Figure 1-1. So now, we have strung two hubs together to build a more complex application. Figure 1-7: Hubs allow us to build large, complex applications Figure 1-7 shows our new diagram, with the Account hub and the Employee List hub connected together. Our application can keep growing (and growing and growing) by connecting more and more hubs together. It s typical to see a web application tie dozens of hubs together User Interface Engineering. Reproduction Prohibited

8 1.3 THE INTERVIEW We discussed at the start of the report how application designers use two structures when building web applications. The hub allows us to group functionality into a logical structure. The other structure groups the functionality into a less complex, more approachable design, which we call an interview. The interview follows a step-by-step workflow, collecting information a little bit at a time from the user. Let s go back to our Employee list and take a closer look at the Export command. Figure 1-8: When users click Export, they start an Interview. When users click Export, they see a screen labeled Export: Step 1. This is the beginning of an interview. Here the application asks whether to export all employees or just the selected ones. At the bottom are three commands: Cancel, Back, and Next. The Back command is not available because this is the beginning of the Export interview. Cancel cancels the entire Export interview. Next takes users to the next step in the interview. Figure 1-9: The entire Export interview Figure 1-9 shows the entire interview. During this particular interview, users may freely move back to questions they had previously answered, or click Next to see the next question. Only at the end of the last step in the interview will the export take place. Notice on the final screen, Step 4, the Next button changes to read Done User Interface Engineering. Reproduction Prohibited 7

9 You have almost certainly encountered many interviews for installing software, completing an online purchase, or perhaps even paying taxes. Interviews break down complex processes into more manageable steps. Not all interviews work exactly like this one in some, for example, there may be many questions per page. In others, the user can t go back to change a previous answer. An interview might not wait until the very last step to make some changes or save information the user has entered. The details will vary a great deal from one application to another. Let s update the structure diagram to show our new export interview: Now instead of a single circle, a 4-screen process (shown in Figure 1-10) represents Export. Users start at Step 1, go through the screens in order, and after Step 4, return to the hub. Figure 1-11 shows a shorthand version you may want to use to save space when you are drawing your own structure diagram. Figure 1-10: Our diagram with the Export interview Figure 1-11: Shorthand in the structure diagram This interview was a rather simple one. No matter what answer the user gave to the question on Step 1, he would see the next question on Step 2. Interviews can be large and complex with branching pathways depending on the user s situation or answers. In addition, we can combine interviews, just as hubs can, to build structures that are ever more complex. So now we ve learned about two structures the hub and the interview. Is that really all there is to it? Well, yes and no. These structures form the basic structure of applications. Think of them as Lego building block pieces. Each piece is very simple. However, they can be put together to create astonishingly complex creations. Similarly, it can be difficult to decide how to piece together hubs and interviews to build an application. Translating them into a real-world design is a long process. Nevertheless, we need to identify and use these structures to build applications that will be easy for users to learn and live with. So let s look at some real world applications and see if we can decode the structures they use User Interface Engineering. Reproduction Prohibited

10 WOULD YOU LIKE TO LEARN MORE? Buy the complete 54-page report today at THE DESIGNER S GUIDE TO WEB APPLICATIONS, PART I: STRUCTURE AND FLOWS By Hagan Rivers, Two Rivers Consulting Hagan Rivers, a pioneer designer of web applications, has written a comprehensive, 54-page report that deconstructs some of today s most complex web applications. In this report, she ll walk you through the design techniques employed by Amazon.com, Microsoft Money, Yahoo! Mail, Shutterfly, and Blogger, among others. In this report, Hagan gives you step-by-step guidance through the process of creating successful web applications. You ll learn: How to build your application's structure diagram. Hagan will explain how to use structure diagrams as shorthand for visualizing your designs. Structure diagrams help you communicate your application s structure with your team members and to help everyone focus on the key parts of the design. How to identify the two basic forms of application structure: Hubs and Interviews. The two most common structures found in web apps, Hubs and Interviews are essential components in your toolkit. You ll get a comprehensive introduction to these two components, with several examples showing you when to use each type of structure. Which design elements to use. Hagan will show you where and when to use tabs, menus, breadcrumbs, links, and titles in your application. She ll go over the strengths and drawbacks of each element. How to build your application's Command Architecture. When you design the organization of an application, you re building a Command Architecture, a hierarchy of hubs and interviews reflecting each command in your application. Hagan will show you how to build your architecture, step-by-step. DID YOU KNOW An application can have multiple designs and underlying structures that accomplish the same goal. Design teams must weigh the advantages and disadvantages of each to see which most closely match the needs of your users. Menus can save you space, yet tabs make your hubs visible. Tab Menus give you the benefit of both tabs and menus, while breadcrumbs help communicate the relationship of different application components. Knowing which elements to choose is a critical design task. Creating structure diagrams is a quick and easy way to get all members of your design team on the same page when developing the structure of your design. You can save time, energy, and frustration by utilizing these handy illustrations. Conducting field studies and usability tests are two of the best ways to get to know your users. Watch them in their natural environments performing various tasks or have them try out your previous designs to get a sense of how they will interact with your new product. LEARN MORE AT User Interface Engineering. Reproduction Prohibited

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

PDC Helpdesk User Guide

PDC Helpdesk User Guide PDC Helpdesk User Guide PDC Helpdesk Prolog Development Center A / S Page 1 of 17 Contents 1 Introduction... 3 2 Using the browser or e-mails... 3 3 Login PDC Helpdesk... 3 4 Overview page for Issues...

More information

Why should I back up my certificate? How do I create a backup copy of my certificate?

Why should I back up my certificate? How do I create a backup copy of my certificate? Why should I back up my certificate? You should always keep a backup copy of your ACES Business Certificate on a location external to your computer. Since it s stored locally on your computer, in the Windows

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

THIS HAD BETTER BE GOOD

THIS HAD BETTER BE GOOD THIS HAD BETTER BE GOOD A nd trust me, it is. What would you think if I told you that you can make an international call of high quality sound, and it would cost you nothing? I know, it sounds like one

More information

Roth IRA Conversion Evaluator

Roth IRA Conversion Evaluator Roth IRA Conversion Evaluator Quick Start Guide 2009, WoltersKluwer. All Rights Reserved. Page 1 of 36 Table of Contents Roth IRA Conversion Evaluator Quick Start Guide Getting Started... 3 About the Roth

More information

Outlook XP Email Only

Outlook XP Email Only Outlook XP Email Only Table of Contents OUTLOOK XP EMAIL 5 HOW EMAIL WORKS: 5 POP AND SMTP: 5 TO SET UP THE POP AND SMTP ADDRESSES: 6 TO SET THE DELIVERY PROPERTY: 8 STARTING OUTLOOK: 10 THE OUTLOOK BAR:

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

Using Excel As A Database

Using Excel As A Database Using Excel As A Database Access is a great database application, but let s face it sometimes it s just a bit complicated! There are a lot of times when it would be nice to have some of the capabilities

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Tired of running to the post office and the bank to get your customers payments

Tired of running to the post office and the bank to get your customers payments Getting Paid With QuickBooks Payments APPENDIX E Tired of running to the post office and the bank to get your customers payments into your bank account? Fortunately, Intuit s new electronic payment subscription

More information

Card sort analysis spreadsheet

Card sort analysis spreadsheet Interaction Design Instructions for use: Card sort analysis spreadsheet June 2007 Page Card sort analysis spreadsheet About the spreadsheet I have an Excel spreadsheet that I use to analyze data from physical

More information

Microsoft Migrating to Access 2010 from Access 2003

Microsoft Migrating to Access 2010 from Access 2003 In This Guide Microsoft Access 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Access 2010 training,

More information

CheckBook Pro 2 Help

CheckBook Pro 2 Help Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 Optional password protection 14 We're not done yet! 15 AutoCompletion

More information

HOW TO BUILD AND CUSTOMIZE YOUR FACEBOOK FAN PAGE (ON THE CHEAP)

HOW TO BUILD AND CUSTOMIZE YOUR FACEBOOK FAN PAGE (ON THE CHEAP) HOW TO BUILD AND CUSTOMIZE YOUR FACEBOOK FAN PAGE (ON THE CHEAP) Let s connect on Facebook http://facebook.com/smmcamp Page 1 How to Build and Customize Your Facebook Fan Page In this tutorial I m going

More information

SalesFUSION Partner Certification Guide

SalesFUSION Partner Certification Guide SalesFUSION Partner Certification Guide Welcome to the SalesFUSION Partner Family!! This document will guide you through the SalesFUSION Certified Partner Program. At each step there will be videos to

More information

Online Registrations for Summer Programming Josh Muse (jmuse@colchestervt.gov) & Hannah Peacock (hpeacock@colchestervt.gov)

Online Registrations for Summer Programming Josh Muse (jmuse@colchestervt.gov) & Hannah Peacock (hpeacock@colchestervt.gov) Online Registrations for Summer Programming Josh Muse (jmuse@colchestervt.gov) & Hannah Peacock (hpeacock@colchestervt.gov) Summer Reading Registration In this tutorial, we will walk you through the process

More information

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365 This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University

More information

Tired of running to the post office and the bank to get your customers payments

Tired of running to the post office and the bank to get your customers payments Getting Paid With QuickBooks Payments APPENDIX E Tired of running to the post office and the bank to get your customers payments into your bank account? Fortunately, Intuit s electronic payment subscription

More information

Intro to Mail Merge. Contents: David Diskin for the University of the Pacific Center for Professional and Continuing Education. Word Mail Merge Wizard

Intro to Mail Merge. Contents: David Diskin for the University of the Pacific Center for Professional and Continuing Education. Word Mail Merge Wizard Intro to Mail Merge David Diskin for the University of the Pacific Center for Professional and Continuing Education Contents: Word Mail Merge Wizard Mail Merge Possibilities Labels Form Letters Directory

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

TechTips. Connecting Xcelsius Dashboards to External Data Sources using: Web Services (Dynamic Web Query)

TechTips. Connecting Xcelsius Dashboards to External Data Sources using: Web Services (Dynamic Web Query) TechTips Connecting Xcelsius Dashboards to External Data Sources using: Web Services (Dynamic Web Query) A step-by-step guide to connecting Xcelsius Enterprise XE dashboards to company databases using

More information

Paper 10-27 Designing Web Applications: Lessons from SAS User Interface Analysts Todd Barlow, SAS Institute Inc., Cary, NC

Paper 10-27 Designing Web Applications: Lessons from SAS User Interface Analysts Todd Barlow, SAS Institute Inc., Cary, NC Paper 10-27 Designing Web Applications: Lessons from SAS User Interface Analysts Todd Barlow, SAS Institute Inc., Cary, NC ABSTRACT Web application user interfaces combine aspects of non-web GUI design

More information

How to Configure Outlook 2003 to connect to Exchange 2010

How to Configure Outlook 2003 to connect to Exchange 2010 How to Configure Outlook 2003 to connect to Exchange 2010 Outlook 2003 will install and work correctly on any version of Windows XP, Vista, Windows 7 or Windows 8. These instructions describe how to setup

More information

MICROSOFT OFFICE SHAREPOINT 2007

MICROSOFT OFFICE SHAREPOINT 2007 MICROSOFT OFFICE SHAREPOINT 007 POWER USER MICROSOFT OFFICE SHAREPOINT 007 POWER USER Course Code: PWMSP7PowerUserSurrey READ ME FIRST In case you're not familiar with the terminology, Read Me First is

More information

Creating and Using Forms in SharePoint

Creating and Using Forms in SharePoint Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a

More information

Designing and Implementing Forms 34

Designing and Implementing Forms 34 C H A P T E R 34 Designing and Implementing Forms 34 You can add forms to your site to collect information from site visitors; for example, to survey potential customers, conduct credit-card transactions,

More information

E-mailing a large amount of recipients

E-mailing a large amount of recipients E-mailing a large amount of recipients DO NOT use the TO or CC field! If you have a large list of recipients you need to send an email you, you should never try sending one large email with all of the

More information

Infoview XIR3. User Guide. 1 of 20

Infoview XIR3. User Guide. 1 of 20 Infoview XIR3 User Guide 1 of 20 1. WHAT IS INFOVIEW?...3 2. LOGGING IN TO INFOVIEW...4 3. NAVIGATING THE INFOVIEW ENVIRONMENT...5 3.1. Home Page... 5 3.2. The Header Panel... 5 3.3. Workspace Panel...

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

USER GUIDE. Unit 5: Tools & Modules. Chapter 3: Forms & Surveys

USER GUIDE. Unit 5: Tools & Modules. Chapter 3: Forms & Surveys USER GUIDE Unit 5: Tools & Modules Chapter 3: Schoolwires Centricity Version 4.0 TABLE OF CONTENTS Introduction... 1 Audience and Objectives... 1 Major Components of a Form or Survey... 2 Overview... 2

More information

Staying Organized with the Outlook Journal

Staying Organized with the Outlook Journal CHAPTER Staying Organized with the Outlook Journal In this chapter Using Outlook s Journal 362 Working with the Journal Folder 364 Setting Up Automatic Email Journaling 367 Using Journal s Other Tracking

More information

Working together with Word, Excel and PowerPoint

Working together with Word, Excel and PowerPoint Working together with Word, Excel and PowerPoint Have you ever wanted your Word document to include data from an Excel spreadsheet, or diagrams you ve created in PowerPoint? This note shows you how to

More information

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook.

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook. Migrate Archived Outlook Items Outlook includes archiving functionality that is used to free up space on the mail server by moving older items from the mail server to PST files stored on your computer

More information

How To Convert A Lead In Sugarcrm

How To Convert A Lead In Sugarcrm Attract. Convert. Retain. Lead Management in SugarCRM Written by: Josh Sweeney and Matthew Poer www.atcoresystems.com Atcore Systems, LLC 2010 All rights reserved. No part of this publication may be reproduced

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

HTML5 Data Visualization and Manipulation Tool Colorado School of Mines Field Session Summer 2013

HTML5 Data Visualization and Manipulation Tool Colorado School of Mines Field Session Summer 2013 HTML5 Data Visualization and Manipulation Tool Colorado School of Mines Field Session Summer 2013 Riley Moses Bri Fidder Jon Lewis Introduction & Product Vision BIMShift is a company that provides all

More information

Once you ve signed up, all you ll have to do is sign in. To sign in key in your e-mail address and password.

Once you ve signed up, all you ll have to do is sign in. To sign in key in your e-mail address and password. (1) www.marketwatch.com (2) Sign up for free membership. Pick one option. A. Click Free membership link. B. Click My Portfolios tab. C. Left column, at the bottom, click Join now! A B C Once you ve signed

More information

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands.

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands. Quick Start Guide Microsoft Excel 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Add commands to the Quick Access Toolbar Keep favorite commands

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

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

In the same spirit, our QuickBooks 2008 Software Installation Guide has been completely revised as well.

In the same spirit, our QuickBooks 2008 Software Installation Guide has been completely revised as well. QuickBooks 2008 Software Installation Guide Welcome 3/25/09; Ver. IMD-2.1 This guide is designed to support users installing QuickBooks: Pro or Premier 2008 financial accounting software, especially in

More information

Using Microsoft Office to Manage Projects

Using Microsoft Office to Manage Projects (or, Why You Don t Need MS Project) Using Microsoft Office to Manage Projects will explain how to use two applications in the Microsoft Office suite to document your project plan and assign and track tasks.

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

Microsoft Outlook Quick Reference Sheet

Microsoft Outlook Quick Reference Sheet Microsoft Outlook is an incredibly powerful e-mail and personal information management application. Its features and capabilities are extensive. Refer to this handout whenever you require quick reminders

More information

Using Microsoft Azure for Students

Using Microsoft Azure for Students Using Microsoft Azure for Students Dive into Azure through Microsoft Imagine s free new offer and learn how to develop and deploy to the cloud, at no cost! To take advantage of Microsoft s cloud development

More information

How to Configure Outlook 2007 to connect to Exchange 2010

How to Configure Outlook 2007 to connect to Exchange 2010 How to Configure Outlook 2007 to connect to Exchange 2010 Outlook 2007 will install and work correctly on any version of Windows XP, Vista, Windows 7 or Windows 8. These instructions describe how to setup

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES LESSON 13 Managing Devices OBJECTIVES After completing this lesson, you will be able to: 1. Open System Properties. 2. Use Device Manager. 3. Understand hardware profiles. 4. Set performance options. Estimated

More information

Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.

Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Quick Start Guide Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Change the screen size or close a database Click the Access

More information

Quick Start Guide. Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.

Quick Start Guide. Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Quick Start Guide Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Switch between touch and mouse If you re using OneNote

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT Microsoft Excel: Tables & Pivot Tables ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 1. What is an Excel Table?... 2 2. Creating Pivot

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

Import Filter Editor User s Guide

Import Filter Editor User s Guide Reference Manager Windows Version Import Filter Editor User s Guide April 7, 1999 Research Information Systems COPYRIGHT NOTICE This software product and accompanying documentation is copyrighted and all

More information

MICROSOFT OUTLOOK 2011 GETTING STARTED AND HELP RESOURCES

MICROSOFT OUTLOOK 2011 GETTING STARTED AND HELP RESOURCES MICROSOFT OUTLOOK 2011 GETTING STARTED AND HELP RESOURCES Lasted Edited: 2012-07-10 1 Introduction... 4 Getting Started... 4 Tour of the Outlook 2011 Interface... 4 Start Outlook 2011... 5 Configure E-mail

More information

Revealing the Secrets of Microsoft Project

Revealing the Secrets of Microsoft Project 2 Revealing the Secrets of Microsoft Project To know that one has a secret is to know half the secret itself. Henry Ward Beecher Topics Covered in This Chapter Recognizing the Underlying Rules of Project

More information

In list view, the Finder window displays folder or volume contents as a list, which can be sorted by name, date, kind, or other criteria.

In list view, the Finder window displays folder or volume contents as a list, which can be sorted by name, date, kind, or other criteria. Using the Finder When you first start up your Mac, you're greeted by the Finder, which allows you to visually access practically everything on your Mac, including applications, hard disks, files, folders,

More information

Using the Content Manager

Using the Content Manager Using the Content Manager 2010, Shopatron, Inc. Using the Content Manager September 2010 This document contains proprietary and confidential information of Shopatron, Inc., and is protected by Federal

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

Cal Answers Analysis Training Part I. Creating Analyses in OBIEE

Cal Answers Analysis Training Part I. Creating Analyses in OBIEE Cal Answers Analysis Training Part I Creating Analyses in OBIEE University of California, Berkeley March 2012 Table of Contents Table of Contents... 1 Overview... 2 Getting Around OBIEE... 2 Cal Answers

More information

IT Quick Reference Guides Performing Mail Merges in Word 2010

IT Quick Reference Guides Performing Mail Merges in Word 2010 IT Quick Reference Guides Performing Mail Merges in Word 2010 Word Guides Mail merges are useful when you want to create form letters or other documents sent to or drawing information from multiple customers.

More information

Creating and Managing Shared Folders

Creating and Managing Shared Folders Creating and Managing Shared Folders Microsoft threw all sorts of new services, features, and functions into Windows 2000 Server, but at the heart of it all was still the requirement to be a good file

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

Microsoft Office Access 2007 Training

Microsoft Office Access 2007 Training Mississippi College presents: Microsoft Office Access 2007 Training Course contents Overview: Fast, easy, simple Lesson 1: A new beginning Lesson 2: OK, back to work Lesson 3: Save your files in the format

More information

Using e-mail and the Internet

Using e-mail and the Internet Using e-mail and the Internet New to Windows 7? Even though there s a lot in common with the version of Windows that you had before, you might still need a hand getting up to speed. This guide is filled

More information

Product Guide. www.nintex.com support@nintex.com. 2013 Nintex. All rights reserved. Errors and omissions excepted.

Product Guide. www.nintex.com support@nintex.com. 2013 Nintex. All rights reserved. Errors and omissions excepted. Product Guide 2013 Nintex. All rights reserved. Errors and omissions excepted. www.nintex.com support@nintex.com 2 Nintex Workflow for Office 365 Product Guide Contents Nintex Forms for Office 365...5

More information

Creating a Database in Access

Creating a Database in Access Creating a Database in Access Microsoft Access is a database application. A database is collection of records and files organized for a particular purpose. For example, you could use a database to store

More information

Admin Reference Guide. PinPoint Document Management System

Admin Reference Guide. PinPoint Document Management System Admin Reference Guide PinPoint Document Management System 1 Contents Introduction... 2 Managing Departments... 3 Managing Languages... 4 Managing Users... 5 Managing User Groups... 7 Managing Tags... 9

More information

Dynamics CRM for Outlook Basics

Dynamics CRM for Outlook Basics Dynamics CRM for Outlook Basics Microsoft Dynamics CRM April, 2015 Contents Welcome to the CRM for Outlook Basics guide... 1 Meet CRM for Outlook.... 2 A new, but comfortably familiar face................................................................

More information

Remote Assistance. bonus appendix

Remote Assistance. bonus appendix bonus appendix Remote Assistance You may think you know what stress is: deadlines, breakups, downsizing. But nothing approaches the frustration of an expert trying to help a PC beginner over the phone

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

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Health Indicators Advancing Healthy Aging in Your Community. Database Instructions for Managers

Health Indicators Advancing Healthy Aging in Your Community. Database Instructions for Managers Health Indicators Advancing Healthy Aging in Your Community Database Instructions for Managers Getting to the Database Website You can access the Health Indicators online database in two different ways.

More information

Microsoft Dynamics GP. Electronic Signatures

Microsoft Dynamics GP. Electronic Signatures Microsoft Dynamics GP Electronic Signatures Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Build Your Mailing List

Build Your Mailing List Introduction MailChimp makes it fun and easy to send email newsletters, manage subscriber lists and track newsletter performance, but what does that have to do with you? Why should churches be concerned

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

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Quality Satisfaction Management. Performing Keyword Research

Quality Satisfaction Management. Performing Keyword Research Quality Satisfaction Management Performing Keyword Research For the purposes of this paper, we ll use Google to represent all search engines (Bing, Yahoo, etc.). The same principles apply, regardless of

More information

Cal Answers Analysis Training Part III. Advanced OBIEE - Dashboard Reports

Cal Answers Analysis Training Part III. Advanced OBIEE - Dashboard Reports Cal Answers Analysis Training Part III Advanced OBIEE - Dashboard Reports University of California, Berkeley March 2012 Table of Contents Table of Contents... 1 Overview... 2 Remember How to Create a Query?...

More information

Configure Outlook 2013 to connect to Hosted Exchange

Configure Outlook 2013 to connect to Hosted Exchange Configure Outlook 2013 to connect to Hosted Exchange Anglia IT Solutions Hosted Exchange supports: Windows XP, 7 and 8 Microsoft Office 2007 / 2010 / 2013 These instructions describe how to setup Outlook

More information

October, 2015. Install/Uninstall Xerox Print Drivers & Apps Best Practices for Windows 8, 8.1, and 10 Customer Tip

October, 2015. Install/Uninstall Xerox Print Drivers & Apps Best Practices for Windows 8, 8.1, and 10 Customer Tip October, 2015 Install/Uninstall Xerox Print Drivers & Apps Best Practices for Windows 8, 8.1, and 10 Customer Tip 2015 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, ColorQube, and WorkCentre

More information

GroupWise to MS Outlook 2007

GroupWise to MS Outlook 2007 GroupWise to MS Outlook 2007 "GroupWise to MS Outlook 2007" The following is a list of GroupWise features with the equivalent names and brief instructions for performing similar actions in Microsoft Outlook.

More information

Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.

Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Quick Start Guide Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Change the screen size or close a database Click the Access

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

Abila Grant Management. Document Management

Abila Grant Management. Document Management Abila Grant Management This is a publication of Abila, Inc. Version 2014 2014 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service names

More information

Web Conferencing Version 8.3 Troubleshooting Guide

Web Conferencing Version 8.3 Troubleshooting Guide System Requirements General Requirements Web Conferencing Version 8.3 Troubleshooting Guide Listed below are the minimum requirements for participants accessing the web conferencing service. Systems which

More information

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

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger. System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4

More information

Quick Start Guide. Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.

Quick Start Guide. Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Quick Start Guide Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Switch between touch and mouse If you re using OneNote

More information

How to get started with fleeping in Fleep?

How to get started with fleeping in Fleep? How to get started with fleeping in Fleep? Fleep is a messaging app that works with email. First and foremost, it s meant for people to whom the speed and effectiveness of communication is as important

More information

How to Configure Outlook 2013 to connect to Exchange 2010

How to Configure Outlook 2013 to connect to Exchange 2010 How to Configure Outlook 2013 to connect to Exchange 2010 Outlook 2013 will install and work correctly on any version of Windows 7 or Windows 8. Outlook 2013 won t install on Windows XP or Vista. 32-bit

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

Importing Email addresses from DiamondCounter into Mozilla Thunderbird

Importing Email addresses from DiamondCounter into Mozilla Thunderbird Importing Email addresses from DiamondCounter into Mozilla Thunderbird This guide will walk you through how to export your customer email list from DiamondCounter and import it into Mozilla Thunderbird

More information

OWA - Outlook Web App

OWA - Outlook Web App OWA - Outlook Web App Olathe Public Schools 0 Page MS Outlook Web App OPS Technology Department Last Revised: May 1, 2011 Table of Contents MS Outlook Web App... 1 How to Access the MS Outlook Web App...

More information

Finding and Opening Documents

Finding and Opening Documents In this chapter Learn how to get around in the Open File dialog box. See how to navigate through drives and folders and display the files in other folders. Learn how to search for a file when you can t

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions HelpDesk OSP User Manual Content 1 INTRODUCTION... 3 2 REQUIREMENTS... 4 3 THE SHAREPOINT SITE... 4 4 THE HELPDESK OSP TICKET... 5 5 INSTALLATION OF HELPDESK OSP... 7 5.1 INTRODUCTION... 7 5.2 PROCESS...

More information

Excel Intermediate Session 2: Charts and Tables

Excel Intermediate Session 2: Charts and Tables Excel Intermediate Session 2: Charts and Tables Agenda 1. Introduction (10 minutes) 2. Tables and Ranges (5 minutes) 3. The Report Part 1: Creating and Manipulating Tables (45 min) 4. Charts and other

More information