Form Design. Software Engineering CSCI Dr. Tom Hicks Computer Science Department

Size: px
Start display at page:

Download "Form Design. Software Engineering CSCI Dr. Tom Hicks Computer Science Department"

Transcription

1 1 Form Design Software Engineering CSCI-3321 Dr. Tom Hicks Computer Science Department

2 Learning About Good Forms By Examining Some Really Bad Prototype Forms 2

3 About Data-Entry Forms 1. Select a form background that would be pleasant and easy to read for the person doing data-entry 8 hours at a time. White is pretty bland! 3

4 Some colors are not the best choices! 4

5 Some colors are not the best choices! 5

6 A better Some choice colors for are background better choices! colors. 6

7 About Data-Entry Forms 2. Select a font color that is compatible with your background. It should be an easy combination to read from a distance 7

8 About Data-Entry Forms 3. Select a font face, font size, and font color combination that would be easy to read for the person doing data-entry 8 hours at a time. 8 8

9 About Data-Entry Forms 4. Never make the prompt more bold or larger than the data entry. The data is more important than the prompt! 9

10 About Data-Entry Forms 5. Opt for font clarity over cuteness

11 About Data-Entry Forms 6. The fact that some API s contain a form generator that generate a starting Data-Entry form does not make that form professional or acceptable. This form is a mess. It looks like someone just threw the prompts and textboxes onto the screen. Some of the prompts are not even entirely visible. This is way better than nothing, but serves as a starting point and not a destination! 11 11

12 About Data-Entry Forms 7. It is most often a good idea to lay out your form in such a way that it has one or two major columns. 8. It is most often a good idea to place the most important info at, or near, the top! (There are certainly many exceptions). 12

13 Would Be Better done With Two Columns! 13

14 About Data-Entry Forms 9. It is generally a good idea to align all prompts and data horizontally. Many API s have alignment tools to make this easier

15 About Data-Entry Forms 10. It is not always possible, but try to avoid void/blank spaces in form. 15

16 About Data-Entry Forms 11. It is generally good idea to frame the form so that you have about the same amount of blank space around all four of the form borders 16 Don t Always Need A Prompt For Textbox Message 16

17 About Data-Entry Forms 12. It is generally a good idea to try to make the space between rows consistent and not too large. 17

18 Data-Entry Form Prompt & Textbox Stand-Alone Applications, Websites, etc. 18

19 About Textbox Prompts 1. Every Prompt Should Be Clear & Concise Supplier ID# Minimum Quantity To Stock 19

20 About Textbox Prompts 1. Every Prompt Should Be Clear & Concise There will be times when forms are cluttered with lots of data entry containers. Arranging the various controls aesthetically and logically often prove challenging. Adding Mouse-Over Text to the prompt is one way to really help clarify the request. Many API s provide mechanisms for this with some type of Tool Tips ; use it when necessary. 20

21 About Textbox Prompts 2. The Prompt Should Not End With A Colon (:). 21

22 About Textbox Prompts 3. You may place prompt over or to the left of the data entry field; most of the time it is best to select one or the other and be consistent. Prompt Name Tom Name Tom Prompt Response TextBox Response TextBox 22

23 Data-Entry Form Controls Stand-Alone Applications, Websites, etc. 23

24 About Controls 1. It is generally a good idea to left-justify the data entry controls (textbox, radio button, drop-down list, checkbox, buttons, etc.) 24

25 More Data-Entry Form Text Prompts Stand-Alone Applications, Websites, etc. 25

26 About Textbox Prompts 4. If you are placing the prompt beside the data entry fields, it is best to right-justify the prompts. 5. If you are placing the prompt over the data entry fields, it is generally best to left-justify both the prompt and the field. 6. It is generally best to keep the distance between the prompt and the data entry fields consistent. 7. It is generally best to keep the prompts the same font and size. 26

27 About Textbox Prompts 8. It is generally a good idea to capitalize the first letter of each and every word in the prompt. 9. It is generally a good idea to try to avoid all upper case prompts (unless they are acronyms). 10.It is generally a good idea to keep the distance between the prompt and the data entry small, readable, and consistent. 27

28 ID Field Searching/Matching Numerics Is Much Faster Than Searching/Matching Strings! 28

29 Numeric ID 1. Most Classes/Structs/Tables should have a unique ID which can be used to identify any one record. 2. Most databases have an auto incrementing field just for this purpose, but it can be implemented in any programming language. 3. It is best to use auto incrementing mechanisms for unique primary keys! 29

30 Numeric ID 4. If creating your own auto incrementing integer fields, these unique ID's should never change! 5. Since these auto incrementing integers are not going to change, then the user should not be able to change it. It will often be displayed on forms, but the user will not be able to change it. 6. A label often appropriate to display the value; if a textbox were used, the user would try, in vain, to change it. 7. These auto incrementing fields preserve relationships. 30

31 More Data-Entry Form Recommendations Stand-Alone Applications, Websites, etc. 31

32 About Data-Entry Forms 13.Each form should contain a clear statement of title in the title bar; the title should describe the form. (This is a great place for a commercial!) 32

33 About Data-Entry Forms 14.All of the forms in an application, or website, should have a common feel a) Consistent navigation and/or buttons b) Consistent fonts c) Compatible, or consistent, background colors 33 33

34 About Data-Entry Forms 15.The Data Entry should be sufficiently large to hold the maximum size value (current font). 16.If the largest Title is 70 characters big, the data entry field should be large enough to handle 70 characters; use multi-line if needed! 34

35 Complex Data-Entry Form Recommendations Stand-Alone Applications, Websites, etc. 35

36 About Data-Entry Forms 16. The use of lines, boxes, panels, and/or tables will enable you to place more information on a form. 17. Organize the information in some logical pattern. 36

37 About Data-Entry Forms 18. You may use multiple font faces and font sizes and font colors on a form; normally this will decrease the usability of the form. Have a reason for those changes. 37

38 About Data-Entry Forms 19. Consider using tab frames when your form has a lot of data. Organize it logically. Label the tabs. Use tab colorization to help user recognize each tab. 38

39 About Data-Entry Forms 20. Include enough duplicate information on each of the tabs to assure that the user never has to guess which record they are viewing. 39

40 About Data-Entry Forms 21. It is often a good idea to provide the user with a multiline textbox in which to store information that may be needed later in the software life cycle; a database memo field might be used to store things that may not have even been considered during the analysis. Note that the contact name 40

41 About Data-Entry Forms 22. Use Drop-down Combo Boxes To Validate Data Entry Selections Whenever Possible; This Will Help Reduce Data Entry Errors. Wouldn t a combo box, or a spinner, which contained only the acceptable values be better for verifying the birthday? Wouldn t a drop-down combo box, containing only the acceptable abbreviations for the states be better than the user selection? 41

42 About Data-Entry Forms 23. Do not select a background that forces one to strain to read/enter text and utilize the buttons. 24. Do not use too many colors on the same form. 25. Keep colors consistent throughout the many forms of an application. 42

43 Data-Entry Form Buttons/Menus Stand-Alone Applications, Websites, etc. 43

44 About Form Buttons/Menus 1. Button names should be extremely clear (btnexit) and the button face text should be as clear as you can make it within the space available. (Exit) 44

45 About Form Buttons/Menus 2. Button should generally be well organized in an orderly fashion. (Remember to frame the form). There will be lots of possible options. 45

46 About Form Buttons/Menus 3. We have found that Next works best on the bottom right and Previous works best on the bottom left. 4. There will be times when you make more frequently used buttons larger. 46

47 About Form Buttons/Menus 5. We have found that menus on the right are not nearly as effective as menus on the bottom. 47

48 About Form Buttons/Menus 6. Power Users often don t want big buttons. 7. It is perfectly all right to have different button layouts for users with different skills. 48

49 About Form Buttons/Menus 8. Include mouse-over tool tips with graphical buttons. 49

50 About Form Buttons/Menus 9. The Navigation Buttons & Menus on all of the forms in an application, or website, should have a common feel/style

51 All Of These Came From The Same Project! Do These Look Compatible/Complementary & Consistent? 51

52 All Of These Came From The Same Project! Do These Look Compatible/Complementary & Consistent? 52

53 Data-Entry Form About Edit-Add-View Stand-Alone Applications, Websites, etc. 53

54 About Edit-Add-View 1. Rather than create one form/prototype for an Edit Mode, one form/prototype for an Add Mode, and one for a Normal View Mode, it is often possible to design a system to use one format for all. 54

55 About Edit-Add-View 2. In the Normal View Mode, the user would enter the Edit Mode by selecting Add or Edit; buttons Save & Cancel buttons are disabled! 3. Add & Edit can often use the same form! 55

56 About Edit-Add-View 4. The Edit Mode (when either editing an existing record, or adding a new record) should be noticeably different. I don t recommend this color combination. 56

57 About Data-Entry Forms 5. Note that only buttons Save & Cancel are enabled! When editing, or adding, the only two choices available to the user should be Save or Cancel! 57 57

58 About Data-Entry Forms 6. The Edit Mode should work with a copy of the data; this way the user can Cancel without destroying the original data. 58

59 Not An Acceptable Primary Data-Entry Form 7. The column-tablular style might be ok format to use as a second data entry form for power users. 59

60 Data-Entry Form Navigation Stand-Alone Applications, Websites, etc. 60

61 Navigation 1. Most of your High Level subsystems should have an option for the novice users to scan through the data with Next and Previous buttons. 61

62 Not An Acceptable Primary Navigation Form Student View User Form: Goal: User Suppose To Enter Any Info They Know with tabs when they hit ENTER Key Shows Users No Manual & No Training Great to have a Secondary Navigation Form that is Search-Oriented for Power Users! 62 62

63 Argument Against Next-Previous We have 10,000 Items! Therefore : This would take forever Not Useful If this is the case, we need to bundle Next & Previous with other controls & options! 63

64 Navigation Quick Links We have 10,000 Users! Make it useful. Divide & Conquer 2. Use Quick-Link search buttons such as A, B, C, 3. Select B to navigate to first User whose Name starts with an A 64

65 Navigation Quick Links We have 10,000 Users! Make it useful. Divide & Conquer 4. Most Sub-Systems should include Navigation Filters to reduce data sets. 65

66 Navigation Filters? Filters might be used, to partition or subdivide the data; what type of things might we use in an elementary school library application to subdivide the Users? Teachers Librarians Students First Grade Second Grade Third Grade Fourth Grade Fifth Grade Sixth Grade First Period Second Period Miss Wilson Mr. Smith Ms. Jones 66

67 Navigation Filters 5. Most Sub-Systems should take advantage of navigation filters to isolate traffic. 6. Filters should also be used to isolate printed data; the same report layout, with variable titles, can be used for multiple listings. 67

68 Navigation Filter Example 68

69 Order By 7. Most Sub-Systems should take advantage of an Order By combo box to provide logical order (as opposed to physical order). 69

70 Order By Example 70

71 High-Level Navigation 8. The user should always know where they are, where they need to go, & how to get there! (Many Systems Will Need More Than A Few Tab Frames!) 71

72 High-Level Navigation 9. Although not very clever or creative, you might have a set of controls that sit on the desktop to access each of your sub-systems. 72

73 High-Level Navigation 10. You can use.net to create an application environment with upper level menu strip controls at the top; the forms beneath may be all button related. 73

74 High-Level Navigation 11. There are a number of API s that provide menu-strip controls; you might have an upper level menu-strip control your sub-system forms (which also have menu strip controls) 74

75 High-Level Navigation 12. Continue To Ask Yourself Why Did The User Get Here Example : Garage Application : User Is Looking At Customer Record : They Wanted To Do A Service Order For That Customer and then provide the user with the tools to get to where they need to go efficiently & quickly! Example : The Software Engineer Should A Button On The Customer Form Maybe Create Service Order? Forcing the user to close the User Form Select the Service Order Sub-System Select create new order Require the user to type in Name, ID, Address, etc. for a record that the user was just looking at is not unusual, but really lame! 75

76 The Navigation Choices Must Be Obvious! Obvious is not Right Mouse Click On The Form & Select 76

77 Each Of Your Major Sub-System Stand-Alone Application Forms Must Include The Following Navigation Buttons: Next Previous Each Of Your Major Sub-System Stand-Alone Application Forms Must Include The Following Controls: Select Order By 77 77

78 78

Creating accessible forms

Creating accessible forms Creating accessible forms Introduction Creating an accessible form can seem tricky. Some of the questions people commonly ask include: Can I use protected forms? How do I lay out my prompts and questions?

More information

Using Dreamweaver CC. 5 More Page Editing. Bulleted and Numbered Lists

Using Dreamweaver CC. 5 More Page Editing. Bulleted and Numbered Lists Using Dreamweaver CC 5 By now, you should have a functional template, with one simple page based on that template. For the remaining pages, we ll create each page based on the template and then save each

More information

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 1. Open Microsoft Word 2007. Word will start up as a blank document. 2. Change the margins by clicking the Page Layout tab and clicking

More information

Step 3: Type the data in to the cell

Step 3: Type the data in to the cell Simple Instructions for using Microsoft Excel The goal of these instructions is to familiarize the user with the basics of Excel. These directions will cover data entry, formatting, formulas and functions,

More information

Oskari UX Guide Cybercom Finland Oy

Oskari UX Guide Cybercom Finland Oy Oskari UX Guide 18.11.2015 Cybercom Finland Oy Contents Principles of User Interface Design 3 General Layout 4 Main Navigation Layout 5 Map View Layout 6 Layouts of Different Box Types 7 Form Layout 8

More information

EXCEL BASICS: PROJECTS

EXCEL BASICS: PROJECTS EXCEL BASICS: PROJECTS In this class, you will be practicing with three basic Excel worksheets to learn a variety of foundational skills necessary for more advanced projects. This class covers: Three Project

More information

Certification Prep Series

Certification Prep Series Sample Pages Certification Prep Series by D. Michael Ploor Start on Monday. Test on Friday. Certification Prep Series consists of individual guides that provide practice in the basic skills needed to be

More information

Using Dreamweaver. 5 More Page Editing. Bulleted and Numbered Lists

Using Dreamweaver. 5 More Page Editing. Bulleted and Numbered Lists Using Dreamweaver 5 By now, you should have a functional template, with one simple page based on that template. For the remaining pages, we ll create each page based on the template and then save each

More information

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images.

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images. Creating the Newsletter Overview: You will be creating a cover page and a newsletter. The Cover page will include Your Name, Your Teacher's Name, the Title of the Newsletter, the Date, Period Number, an

More information

Creating a Website Using Weebly.com (June 26, 2017 Update)

Creating a Website Using Weebly.com (June 26, 2017 Update) Creating a Website Using Weebly.com (June 26, 2017 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Formatting Your Document University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Skittles Excel Project

Skittles Excel Project Skittles Excel Project Entering Your Data and Creating Data Displays 1. Open Microsoft Excel 2. Create a table for your Skittles colors: a. In cell A1 type in a title for your chart b. In cell A2 type

More information

Forms/Distribution Acrobat X Professional. Using the Forms Wizard

Forms/Distribution Acrobat X Professional. Using the Forms Wizard Forms/Distribution Acrobat X Professional Acrobat is becoming a standard tool for people and businesses to use in order to replicate forms and have them available electronically. If a form is converted

More information

Understanding PowerPoint s Text Capabilities

Understanding PowerPoint s Text Capabilities Page 1 of 14 Chapter 3: Working with Text In this chapter z Understanding PowerPoint s Text Capabilities z Adding Text z Formatting Text z Using Bullets z Using Numbered Lists z Checking Spelling and Style

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on that information.

More information

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING EXCEL + POWERPOINT Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING KEYBOARD SHORTCUTS NAVIGATION & SELECTION SHORTCUTS 3 EDITING SHORTCUTS 3 SUMMARIES PIVOT TABLES

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

More Skills 11 Format and Position Report Controls

More Skills 11 Format and Position Report Controls = CHAPTER 5 Access More Skills 11 Format and Position Report Controls Controls can be aligned using buttons on the Ribbon. Using the Ribbon s alignment tools can be quicker and more accurate than positioning

More information

Lesson 4 Page Styles

Lesson 4 Page Styles Lesson 4 Page Styles The Concept of Styles: Styles: In the context of LibreOffice Writer, Styles refers to the characteristics of a part of a document. For example, a Page Style includes information about

More information

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW STAROFFICE 8 DRAW Graphics They say a picture is worth a thousand words. Pictures are often used along with our words for good reason. They help communicate our thoughts. They give extra information that

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Creating Page Layouts 25 min

Creating Page Layouts 25 min 1 of 10 09/11/2011 19:08 Home > Design Tips > Creating Page Layouts Creating Page Layouts 25 min Effective document design depends on a clear visual structure that conveys and complements the main message.

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Multiple Worksheets Quick Links Manipulating Sheets Pages EX16 EX17 Copying Worksheets Page EX337 Grouping Worksheets Pages EX330 EX332 Multi-Sheet Cell References Page

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager How to define model elements simply? In Sparx Systems Enterprise Architect, use the document-based Specification Manager to create elements

More information

Creating a Template in WordPerfect

Creating a Template in WordPerfect 1. File a. New From Project Creating a Template in WordPerfect b. Go to Options 2. Create A Category 1 3. Name it Family History (or a title of your choice) 4. Find Family History in the Drop down list

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Graded Project. Microsoft Word

Graded Project. Microsoft Word Graded Project Microsoft Word INTRODUCTION 1 CREATE AND EDIT A COVER LETTER 1 CREATE A FACT SHEET ABOUT WORD 2013 6 USE A FLIER TO GENERATE PUBLICITY 9 DESIGN A REGISTRATION FORM 12 REVIEW YOUR WORK AND

More information

User Guide. Chapter 6. Teacher Pages

User Guide. Chapter 6. Teacher Pages User Guide Chapter 6 s Table of Contents Introduction... 5 Tips for s... 6 Pitfalls... 7 Key Information... 8 I. How to add a... 8 II. How to Edit... 10 SharpSchool s WYSIWYG Editor... 11 Publish a...

More information

Microsoft PowerPoint 2003 Basic Activities

Microsoft PowerPoint 2003 Basic Activities Microsoft PowerPoint 2003 Basic Activities Activity 1 Creating a new blank presentation... 1 1A. Applying Layouts... 1 1B. Applying a Slide Design... 1 1C. Applying a Background... 2 1D. Entering Text...

More information

Creating Universally Designed Word 2010 Documents - Quick Start Guide

Creating Universally Designed Word 2010 Documents - Quick Start Guide Creating Universally Designed Word 2010 Documents - Quick Start Guide Overview Creating accessible documents ones that work well with all sorts of technology can be a daunting task. The purpose of this

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Excel 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

More information

Text and Lists Use Styles. What Are Styles?

Text and Lists Use Styles. What Are Styles? Creating Accessible Word Documents Using Microsoft Word 2003 Cassandra Tex, MBA Assistive Technology Specialist Student Disability Resource Center Humboldt State University Word documents are inherently

More information

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Introduction to Advanced Features of PowerPoint 2010

Introduction to Advanced Features of PowerPoint 2010 Introduction to Advanced Features of PowerPoint 2010 TABLE OF CONTENTS INTRODUCTION... 2 TUTORIAL PURPOSE... 2 WHO WOULD BENEFIT FROM THIS TUTORIAL?... 2 WHO WOULD NOT BENEFIT FROM THIS TUTORIAL?... 2

More information

PowerSchool Handbook Federal Survey Card Report

PowerSchool Handbook Federal Survey Card Report Handbook Federal Survey Card Report Version 1.0 August 9, 2017 Copyright 2017, San Diego Unified School District. All rights reserved. This document may be reproduced internally by San Diego Unified School

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

STAROFFICE 8 SUMMARY PROJECT

STAROFFICE 8 SUMMARY PROJECT STAROFFICE 8 SUMMARY PROJECT Putting It All Together In the previous three guides you have learned an incredible amount about publishing information with StarOffice 8 Writer, Draw, and Calc. You can create,

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Graded Project. Microsoft Word

Graded Project. Microsoft Word Graded Project Microsoft Word INTRODUCTION 1 CREATE AND EDIT A COVER LETTER 1 CREATE A FACT SHEET ABOUT WORD 2010 7 USE A FLIER TO GENERATE PUBLICITY 12 DESIGN A REGISTRATION FORM 16 REVIEW YOUR WORK AND

More information

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet!

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Hi folks! Before beginning the article, I just wanted to thank Brian Allan for starting an interesting discussion on what Strong at Excel means

More information

Exemplar for Internal Achievement Standard. Technology Level 1

Exemplar for Internal Achievement Standard. Technology Level 1 Exemplar for Internal Achievement Standard Technology Level 1 This exemplar supports assessment against: Achievement Standard 91046 (B) Use design ideas to produce a conceptual design for an outcome to

More information

Architecture Diagrams

Architecture Diagrams Intro To Design 2 Architecture Diagrams Software Engineering CSCI-3321 Dr. Tom Hicks Computer Science Department 1 "Good Design Is Good Design" 2 Select A Team Recorder Take Really Good Notes During Lectures

More information

Multimedia Design Principles. Darnell Chance August 2005

Multimedia Design Principles. Darnell Chance August 2005 Multimedia Design Principles Darnell Chance August 2005 Home Page Things To Consider Organization Story Board Organization The 3 C s Alignment Proximity Tips/ Techs White Space Contrast Rule of Thumb Typography

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Figure 1.1 GENESIS Log In Page

Figure 1.1 GENESIS Log In Page TEACHERVUE User Guide Chapter One OVERVIEW OF THE TEACHERVUE SOFTWARE The TEACHERVUE software, frequently abbreviated TXP and also known as Teacher Experience, provides districts with an easy method to

More information

Labels and Envelopes in Word 2013

Labels and Envelopes in Word 2013 Labels and Envelopes in Word 2013 Labels... 2 Labels - A Blank Page... 2 Selecting the Label Type... 2 Creating the Label Document... 2 Labels - A Page of the Same... 3 Printing to a Specific Label on

More information

Miami s Quick Start Guide for Using. Snap 9 Professional. to Create a Paper Keyed Survey. Miami s Survey Solutions

Miami s Quick Start Guide for Using. Snap 9 Professional. to Create a Paper Keyed Survey. Miami s Survey Solutions Miami s Quick Start Guide for Using Snap 9 Professional to Create a Paper Keyed Survey 1 Miami s Survey Solutions Snap 9 Professional Getting Started This Quick Start Guide is intended to help you become

More information

Microsoft Excel Level 2

Microsoft Excel Level 2 Microsoft Excel Level 2 Table of Contents Chapter 1 Working with Excel Templates... 5 What is a Template?... 5 I. Opening a Template... 5 II. Using a Template... 5 III. Creating a Template... 6 Chapter

More information

User s Guide. Measured Progress ProFile

User s Guide. Measured Progress ProFile User s Guide for Measured Progress ProFile Customized for 2015 MAP-A School Year 2014-2015 Page 2 Measured Progress ProFile Introduction Measured Progress ProFile is a web-based computer program that allows

More information

Introduction to Microsoft Excel 2016

Introduction to Microsoft Excel 2016 Screen Elements: Introduction to Microsoft Excel 2016 The Ribbon The Ribbon is designed to help you quickly find the commands that you need to complete a task. Commands are organized in logical groups,

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2010 by its contributors as listed below. You may distribute it and/or modify it under the terms of either the GNU

More information

Publisher 2007 Creating Flyers and Brochures

Publisher 2007 Creating Flyers and Brochures MS Publisher 2007 User Guide Publisher 2007 Creating Flyers and Brochures THE NATURE OF DESKTOP PUBLISHING - INTRODUCTION Publisher is a desktop publishing program. You can create publications that

More information

Publisher 2007 Creating Flyers and Brochures

Publisher 2007 Creating Flyers and Brochures MS Publisher 2007 User Guide Publisher 2007 Creating Flyers and Brochures THE NATURE OF DESKTOP PUBLISHING - INTRODUCTION Publisher is a desktop publishing program. You can create publications that use

More information

Creating a Website Using Weebly.com (July 2012 Update)

Creating a Website Using Weebly.com (July 2012 Update) Creating a Website Using Weebly.com (July 2012 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

PowerSchool Handbook Federal Survey Form Report

PowerSchool Handbook Federal Survey Form Report Handbook Federal Survey Form Report Version 2.1 August 22, 2018 Copyright 2018, San Diego Unified School District. All rights reserved. This document may be reproduced internally by San Diego Unified School

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

More information

Writing a Letter - Part 1

Writing a Letter - Part 1 Writing a Letter - Part 1 Writing is one of the most important skills for success in today's world. Most teachers find word processing to be a valuable tool in developing student writing skills as well

More information

Introduction to the Learning Environment 8.3 to 8.4.x

Introduction to the Learning Environment 8.3 to 8.4.x Introduction to the Learning Environment 8.3 to 8.4.x User Guide Second edition, November 30, 2009 Contents My Home Accessing your courses Searching for courses Navigating inside a course Lists Actions

More information

Classroom Website Basics

Classroom Website Basics Table of Contents Introduction Basic... 2 Logging In... 2 Step One Edit Account Settings... 3 Step Two Accessing the Site... 5 Step Three Edit Mode... 5 Step Four Add New Content Box... 6 Step Five Add

More information

Adobe Acrobat 8 Professional Forms

Adobe Acrobat 8 Professional Forms Adobe Acrobat 8 Professional Forms Email: training@health.ufl.edu Web Site: http://training.health.ufl.edu 352 273 5051 This page intentionally left blank. 2 Table of Contents Forms... 2 Creating forms...

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

InDesign. your. Resumé. a how-to guide for creating a professional resumé using InDesign

InDesign. your. Resumé. a how-to guide for creating a professional resumé using InDesign InDesign your Resumé a how-to guide for creating a professional resumé using InDesign Table of Contents p4. Glossary p5. The Importance of Good Design p6. Setting up the Document p10. Creating a Grid p12.

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Creating a Website with Publisher 2016

Creating a Website with Publisher 2016 Creating a Website with Publisher 2016 Getting Started University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of University Information

More information

POFT 2301 INTERMEDIATE KEYBOARDING LECTURE NOTES

POFT 2301 INTERMEDIATE KEYBOARDING LECTURE NOTES INTERMEDIATE KEYBOARDING LECTURE NOTES Be sure that you are reading the textbook information and the notes on the screen as you complete each part of the lessons in this Gregg Keyboarding Program (GDP).

More information

Making Tables and Figures

Making Tables and Figures Making Tables and Figures Don Quick Colorado State University Tables and figures are used in most fields of study to provide a visual presentation of important information to the reader. They are used

More information

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23 CHAPTER 23 In Depth: Writer The word processor is arguably the most popular element within any office suite. That said, you ll be happy to know that OpenOffice.org s Writer component doesn t skimp on features.

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate (103-134) Building Access Databases Notes Quick Links Building Databases Pages AC52 AC56 AC91 AC93 Building Access Tables Pages AC59 AC67 Field Types Pages AC54 AC56 AC267 AC270

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

KRS-590 Programming Software for the Kenwood TS-590

KRS-590 Programming Software for the Kenwood TS-590 for the Kenwood TS-590 Memory Types Memories Limit Memories Memory Channel Functions Receive Frequency Transmit Frequency Offset Direction Operating Mode Data Mode Tx Operating Mode Tx Data Mode Name Tone

More information

EXCEL BASICS. Helen Mills META Solutions

EXCEL BASICS. Helen Mills META Solutions EXCEL BASICS Helen Mills META Solutions OUTLINE Introduction- Highlight Basic Components of Microsoft Excel Entering & Formatting Data, Numbers, & Tables Calculating Totals & Summaries Using Formulas Conditional

More information

New Perspectives on Microsoft Access Module 1: Creating a Database

New Perspectives on Microsoft Access Module 1: Creating a Database New Perspectives on Microsoft Access 2016 Module 1: Creating a Database 1 Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage

More information

Dreamweaver Handout. University of Connecticut Prof. Kent Golden

Dreamweaver Handout. University of Connecticut Prof. Kent Golden Dreamweaver Handout University of Connecticut Prof. Kent Golden Kent@GoldenMultimedia.com www.goldenmultimedia.com Main goal of this handout: To give you the steps needed to create a basic personal website

More information

Forms for Palm OS Version 4 Manual

Forms for Palm OS Version 4 Manual Forms for Palm OS Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in

More information

Aeries.net Student Information System Master Schedule User Manual April 18, 2010

Aeries.net Student Information System Master Schedule User Manual April 18, 2010 Aeries.net Student Information System Master Schedule User Manual April 18, 2010 The Master Schedule is utilized to display and update the school s current master schedule in the MST table. When this form

More information

ORGANIZING YOUR ARTWORK WITH LAYERS

ORGANIZING YOUR ARTWORK WITH LAYERS 9 ORGANIZING YOUR ARTWORK WITH LAYERS Lesson overview In this lesson, you ll learn how to do the following: Work with the Layers panel. Create, rearrange, and lock layers and sublayers. Move objects between

More information

The Paperless Classroom with Google Docs by - Eric Curts

The Paperless Classroom with Google Docs by - Eric Curts The Paperless Classroom with Google Docs by - Eric Curts Table of Contents Overview How to name documents and folders How to choose sharing options: Edit, Comment, and View How to share a document with

More information

FrontPage. Directions & Reference

FrontPage. Directions & Reference FrontPage Directions & Reference August 2006 Table of Contents Page No. Open, Create, Save WebPages Open Webpage... 1 Create and Save a New Page... 1-2 Change the Background Color of Your Web Page...

More information

DeskTop Publishing on Linux

DeskTop Publishing on Linux DeskTop Publishing on Linux Introduction Desktop Publishing (DTP) is the art of bringing together seperate elements in one format. It can be used to create flyers, posters and newsletters Applications

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 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 layout,

More information

Visual C# Program: Temperature Conversion Program

Visual C# Program: Temperature Conversion Program C h a p t e r 4B Addendum Visual C# Program: Temperature Conversion Program In this chapter, you will learn how to use the following Visual C# Application functions to World Class standards: Writing a

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Getting Started with Excel

Getting Started with Excel Getting Started with Excel Excel Files The files that Excel stores spreadsheets in are called workbooks. A workbook is made up of individual worksheets. Each sheet is identified by a sheet name which appears

More information

Creating Accessible Documents in Adobe Acrobat Pro 9

Creating Accessible Documents in Adobe Acrobat Pro 9 Creating Accessible Documents in Adobe Acrobat Pro 9 Create an Electronic Copy of the Book 1. Remove the binding from the book so it can be placed in an automatic document feeder. This requires a fairly

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 Introduction to Microsoft Word 2010 THE BASICS PAGE 02! What is Microsoft Word?! Opening Microsoft Word! The Title Bar! Page View and Zoom MENUS...PAGE 03! Quick Access Toolbar! The Ribbon! File Tab! Home

More information

Creating Universally Designed Word 2013 Documents - Quick Start Guide

Creating Universally Designed Word 2013 Documents - Quick Start Guide Creating Universally Designed Word 2013 Documents - Quick Start Guide Overview Creating accessible documents ones that work well with all sorts of technology can be a daunting task. The purpose of this

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Outlook 2010 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook options. Ribbon: Logically organizes Command Buttons onto Tabs and Groups

More information

Help For TorontoMLS. Report Designer

Help For TorontoMLS. Report Designer Report Designer Creating Report Designs... 2 Report Designer Toolbar... 6 Positioning Items... 8 Layout Basics... 11 Aligning Items... 14 Editing and Deleting Report Designs... 17 Report Designer Tips...

More information

Chapter Two Creating a User Interface

Chapter Two Creating a User Interface Microsoft Visual Basic 2015: Reloaded Sixth Edition Chapter Two Creating a User Interface Objectives After studying this chapter, you should be able to: Plan an application using a TOE chart Use a text

More information

Introduction to Microsoft Publisher

Introduction to Microsoft Publisher Class Description This is an introduction to Microsoft Publisher, with a focus on choosing a template and modifying it to meet your needs. Class Length One and one half (1½) hours Introduction to Microsoft

More information

CROMWELLSTUDIOS. Content Management System Instruction Manual V1. Content Management System. V1

CROMWELLSTUDIOS. Content Management System Instruction Manual V1.   Content Management System. V1 Content Management System Instruction Manual V1 www.cromwellstudios.co.uk Cromwell Studios Web Services Content Management System Manual Part 1 Content Management is the system by which you can change

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Excel 2013 Quick Start Guide The Excel Window File Tab: Click to access actions like Print, Save As, etc. Also to set Excel options. Ribbon: Logically organizes actions onto Tabs, Groups, and Buttons to

More information

Integrated Projects for Presentations

Integrated Projects for Presentations Integrated Projects for Presentations OUTLINING AND CREATING A PRESENTATION Outlining the Presentation Drafting a List of Topics Imagine that your supervisor has asked you to prepare and give a presentation.

More information