Recommended GUI Design Standards

Size: px
Start display at page:

Download "Recommended GUI Design Standards"

Transcription

1 Recommended GUI Design Standards Page 1 Layout and Organization of Your User Interface Organize the user interface so that the information follows either vertically or horizontally, with the most important information always located in the upper left corner of the screen. Group related controls together using either white space or a frame control. Either center the command buttons along the bottom of the screen or stack them in the upper right or lower right corner. Use no more than 6 command buttons on a screen. Place the most commonly used command button first (either on the left or top). Use meaningful captions in command buttons. Place the caption on one line and use from one to three words. Use book title capitalization (all important words other than a, and, or, etc. are capitalized). for command button captions. Label each control in the user interface. The label should be from one to three words (maximum) entered on one line. Align each label on the left, and position each either to the left or above the control. This does not apply to command buttons. See previous 2 bullet items for command buttons standards. Align the labels and controls in the user interface to minimize the number of different margins. Placing and Sizing Design Elements Maintain a consistent margin of two or three dots from all edges of the form. The human eye is attracted to pictures before text, so include a graphic only if it is necessary to do so. If the graphic is used solely for aesthetics, use a small graphic and place it in a location that will not distract the user. Selecting Appropriate Font Style and Size Use 8, 10 or 12 point fonts for elements in the user interface. Limit the number of font sizes used to either one or two. Use a sans serif font for the text in the user interface. Use only one font type for all of the text in the user interface. Avoid using italics and underlining because both make text difficult to read.

2 Page 2 Selecting Appropriate Colors The human eye is attracted to color before black and white. Build the user interface using black, white, and gray first, then add color only if you have a good reason to do so. Use white, off-white or light gray for an application s background, and black for the text. Dark text on a light background is easier to read. Never use a dark color for the background or a light color for the text. A dark background is hard on the eyes, and light-colored text can appear blurry. Limit the number of colors to three, not including white, black or gray. The colors you choose should complement each other. Never use color as the only means of identification for an element within the user interface. People who suffer from color blindness would not be able to use your application if color is the only means of identification. Data entry elements that require user input such as text boxes, check boxes, and combo boxes should be black text on a white background. The cursor should be placed at the beginning of the data entry field that is in error. Any text within the field should be selected. Rules for Assigning Access Keys When assigning an access key to a control, use the first letter of the caption, unless another letter provides a more meaningful association. If you can t use the first letter and no other letter provides a more meaningful association, then use a distinctive consonant in the caption. Lastly, use a vowel or a number in the caption. Access keys must be unique. To give the user s keyboard access to text boxes, assign an access key to the text box control s identifying label. Set the TabIndex property of the label control so that its value is one number less than the value in the TabIndex property of the corresponding text box. In other words, the TabIndex value of the text box should be one greater than the TabIndex value of its corresponding label control. Rules for Assigning the Default Button The default button should be the command button that represents the user s most likely actions, except in cases where that action is both destructive and irreversible. The default button should usually be the leftmost or top button. Dialog Box Standards The standard Windows dialog box is centered on the screen, is not resizable, and contains only a Close button (X button in upper right hand corner) on its title bar. Using the Hourglass Icon It is a Windows standard that when a process will take a relatively long period of time (more than a few seconds), the interface should display the hourglass icon.

3 Page 3 Command Button Standards Every dialog shall have at least one command button that closes the form. A default button shall always be designated. Whenever possible, provide a Cancel button to take the user back to the state prior to invoking the current screen or dialog box. Command buttons that are not currently available should be disabled. Buttons should be separated by 200 pixels vertically and horizontally. Signify that a button will open a new window with an ellipsis ( ) at the end of the caption. Option Button Standards Use option buttons when you want to limit the user to one of two or more related and mutually exclusive choices. The minimum number of option buttons is two and the maximum recommended is seven. The label in the option button s caption property should be entered with only the first word capitalized. Assign a unique access key to each button. A default option button should be selected for each group of option buttons. Frame Control Standards You can use a frame control to visually separate controls from one another. You must use a frame control to create separate groups of option buttons. Use sentence capitalization for the optional label, which is entered in the frame control s caption property. Check Box Standards Use check boxes to allow the user to select any number of choices from a group of one or more independent and non-exclusive choices. Enter the check box control s caption with only the first word capitalized. Assign a unique access key to each check box.

4 MsgBox Function Standards Page 4 Enter the dialog box message with only the first word capitalized. Display the application s name in the dialog box s title bar. The title bar text should be entered using book title capitalization (all important words other than a, and, or, etc. are capitalized). Display the Critical Message icon when you want to alert the user of a serious problem that must be corrected before the application can continue Display the Warning Message icon in a dialog box when you want to alert the user that he or she must first make a decision and then enter a response before the application can continue. You can phrase the message as a question. Display the Information icon in a dialog box that displays an informational message along with the OK button only. The dialog box should not offer any choices to the user. The default button in the dialog should be the one that represents the user s most likely action, as long as that action is not destructive. List Box Standards List boxes should contain a minimum of three selections. Display a minimum of three to a maximum of eight selections at a time. Use a label control to provide keyboard access to the list box. Set the label control s TabIndex property to a value that is one less that the list box s TabIndex value. List box items are either arranged by use, with the most used entries appearing first in the list, or are sorted in ascending order alphabetically, numerically or chronologically. A default item should be selected in a list box when the interface first appears. The default item should be either the most used selection or the first selection in the list. An exception to this rule would be when you wish to force the user to make a conscious choice. In that case there would be no default choice. Combo Box and List Arrangement Use the Dropdown List style of combo box to display a list of choices when the user clicks the list arrow, and you don t want to allow the user to type an entry into the text box portion of the combo box Use a Dropdown Combo box if you need to allow the user to make an entry into the text box portion of the control, and you have many choices to display. By clicking the control s list arrow, the user can display the list of choices; however, once the user makes a selection from the list, the list closes. Use the Simple Combo box if you need to allow the user to make an entry in the text box portion of the control, and you have only a few choices to display. The Simple Combo box s list remains open at all times. Although the Simple Combo box is more convenient to use because the user doesn t have to click the list arrow to display the list, the Dropdown Combo box takes up less space on the form and is the preferred choice if many items must be displayed. Combo box items are either arranged by use, with the most used entries appearing first in the list, or the items are sorted in ascending order alphabetically, numerically or chronologically.

5 Page 5 Menu Design Standards Menu titles, which appear on the main menu bar, should be one word, with the first letter capitalized. Each menu title should have a unique access key. Menu items, which appear on a sub-menu, may be from one to three words. Use book title capitalization and assign a unique access key to each menu item. Assign a shortcut key to commonly used menu items. If a menu item requires additional information from the user, place an ellipsis ( ) after the menu item s caption. Follow the Windows standards for the placement of menu titles and items. For example the File menu is always the first menu and it typically contains the New, Open, Save, Save As, Print and Exit commands. The Edit menu is typically the second menu title, and it contains the Cut, Copy, and Paste commands. Disable menu items that are not applicable to the current state of the application program. Disabled menu items and other controls appear to be grayed-out when they are disabled. Use a separator bar to separate groups of related menu items. Open Dialog Box Guidelines The Files of type list box within the Open dialog should contain the descriptions and filters that control the display of the filenames within the File name list box within the Open dialog. The File name text box within the Open dialog should be empty when the Open dialog appears. Save As Dialog Box Guidelines The Save as type list box within the Save As dialog should contain the descriptions and filters that control the display of the filenames within the File name list box within the Save As dialog. If the current file is saved, its name should appear in the File Name text box when the Save As dialog appears. The Save As command must allow the user to either save a new file or save an existing file under a new name. When the current document has been saved, the document s name must appear in the application s title bar. If the current document has not been saved, then the type of document the application creates, along with the application s name, appears in the application title bar.

6 Page 6 Save Dialog Box Guidelines When the user chooses the Save option from the File menu, the application should automatically display the Save dialog box if the document has a name: otherwise the Save As dialog box should be displayed. User Prompting for Destructive Actions The user should be prompted when a destructive or irreversible action has been selected. The display of these messages should be at the user s option. In other words, this should display messages such as Are you sure you wish to delete this record? by default, but allow the user to turn the option off within the application. Some users get very annoyed by this type of message. Clipboard Usage Start the application that contains the data to be copied and start the Visual Basic application. Click on the application that contains the data you wish to be copied to make it the current application. Select the data from the application that contains the data to be copied. Copy (Ctrl-C or Shift-Ins in many applications) or cut (Ctrl-X or Shift-Del in many applications) the selected data to the clipboard. Click on the Visual Basic application to make it the current application again. Use the Paste command on the Visual Basic application s Edit menu (or Ctrl-V or Shift-Ins in many applications) to paste the data from the clipboard into your Visual Basic application. Highlighting Existing Text It is customary in Windows applications to highlight, or select, existing text in a text box when the text box receives the focus. Enabling and Disabling Controls It is customary in Windows applications to disable objects that don t apply to the current state of the application.

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

Lesson 4 - Creating a Text Document Using WordPad

Lesson 4 - Creating a Text Document Using WordPad Lesson 4 - Creating a Text Document Using WordPad OBJECTIVES: To learn the basics of word processing programs and to create a document in WordPad from Microsoft Windows. A word processing program is the

More information

Microsoft Word Part I Reference Manual

Microsoft Word Part I Reference Manual Microsoft Word 2002 Part I Reference Manual Instructor: Angela Sanderson Computer Training Coordinator Updated by: Angela Sanderson January 11, 2003 Prepared by: Vi Johnson November 20, 2002 THE WORD SCREEN

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

CHAPTER 3: MICROSOFT OFFICE: WORD 2010

CHAPTER 3: MICROSOFT OFFICE: WORD 2010 CHAPTER 3: MICROSOFT OFFICE: WORD 2010 Quick Summary Microsoft Office 2010 includes programs, servers, and services for individuals and organizations. The insertion point is a blinking vertical line that

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics 1 Starting Word 2010 with XP Click the Start Button, All Programs, Microsoft Office, Microsoft Word 2010 Starting Word 2010 with 07 Click the Microsoft Office Button with the Windows flag logo Start Button,

More information

Introduction to Microsoft Word 2007 Quickguide

Introduction to Microsoft Word 2007 Quickguide Introduction to Microsoft Word 2007 Quickguide Opening Word -Click the Start button -Click Programs from the start menu -Select Microsoft Office -Click Microsoft Office Word 2007 -A new blank document

More information

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

More information

Introduction to Word 2010

Introduction to Word 2010 Introduction to Word 2010 Screen Elements 4 1 2 3 5 10 6 7 8 9 1. File Tab: The File tab will bring you into the Backstage View. The Backstage View is where you manage your files and the data about them

More information

Microsoft Office Word 2013

Microsoft Office Word 2013 Microsoft Office Word 2013 Accessibility University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2016 KSU Division of University Information Technology

More information

Using Microsoft Word. Table of Contents

Using Microsoft Word. Table of Contents Using Microsoft Word Table of Contents The Word Screen... 2 Document View Buttons... 2 Selecting Text... 3 Using the Arrow Keys... 3 Using the Mouse... 3 Line Spacing... 4 Paragraph Alignment... 4 Show/Hide

More information

Quick Access Toolbar. You click on it to see these options: New, Open, Save, Save As, Print, Prepare, Send, Publish and Close.

Quick Access Toolbar. You click on it to see these options: New, Open, Save, Save As, Print, Prepare, Send, Publish and Close. Opening Microsoft Word 2007 in the practical room UNIT-III 1 KNREDDY 1. Nyelvi beállítások az Office 2007-hez (Language settings for Office 2007 (not 2003)) English. 2. Double click on the Word 2007 icon

More information

Introduction to MS Word XP 2002: An Overview

Introduction to MS Word XP 2002: An Overview Introduction to MS Word XP 2002: An Overview Sources Used: http://www.fgcu.edu/support/office2000/word/files.html Florida Gulf Coast University Technology Skills Orientation Word 2000 Tutorial The Computer

More information

ShiftWizard User Guide. Version 4

ShiftWizard User Guide. Version 4 ShiftWizard User Guide Version 4 ShiftWizard Program and User Guide 2003 Emergency Medicine Informatics, LLC. All rights reserved. 2 Introduction...4 Running the ShiftWizard...4 Starting the ShiftWizard

More information

Microsoft. Computer Training Center 1515 SW 10 th Avenue Topeka KS

Microsoft. Computer Training Center 1515 SW 10 th Avenue Topeka KS Microsoft Computer Training Center 1515 SW 10 th Avenue Topeka KS 66604-1374 785.580.4606 class@tscpl.org www.tscpl.org Microsoft Word 2007 Introduction to Word Processing 1 How to Start Word is a full-featured

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Contents. Launching Word

Contents. Launching Word Using Microsoft Office 2007 Introduction to Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Winter 2009 Contents Launching Word 2007... 3 Working with

More information

Program and Graphical User Interface Design

Program and Graphical User Interface Design CHAPTER 2 Program and Graphical User Interface Design OBJECTIVES You will have mastered the material in this chapter when you can: Open and close Visual Studio 2010 Create a Visual Basic 2010 Windows Application

More information

3. The first step in the planning phase of a programming solution is to sketch the user interface.

3. The first step in the planning phase of a programming solution is to sketch the user interface. Chapter 2: Designing Applications TRUE/FALSE 1. For an application to fulfill the wants and needs of the user, it is essential for the programmer to plan the application jointly with the user. ANS: T PTS:

More information

MICROSOFT WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

More information

Microsoft Word: Steps To Success (The Bare Essentials)

Microsoft Word: Steps To Success (The Bare Essentials) Microsoft Word: Steps To Success (The Bare Essentials) Workbook by Joyce Kirst 2005 Microsoft Word: Step to Success (The Bare Essentials) Page Contents 1 Starting Word 2 Save 3 Exit 5 Toolbars, Alignment,

More information

Developing successful posters using Microsoft PowerPoint

Developing successful posters using Microsoft PowerPoint Developing successful posters using Microsoft PowerPoint PRESENTED BY ACADEMIC TECHNOLOGY SERVICES University of San Diego Goals of a successful poster A poster is a visual presentation of your research,

More information

Introduction to Microsoft Office PowerPoint 2010

Introduction to Microsoft Office PowerPoint 2010 Introduction to Microsoft Office PowerPoint 2010 TABLE OF CONTENTS Open PowerPoint 2010... 1 About the Editing Screen... 1 Create a Title Slide... 6 Save Your Presentation... 6 Create a New Slide... 7

More information

MENU SELECTION, FORM FILL-IN, AND DIALOG BOXES

MENU SELECTION, FORM FILL-IN, AND DIALOG BOXES MENU SELECTION, FORM FILL-IN, AND DIALOG BOXES 1-1 6-1 Task-Related Organization "The primary goal for menu, form fill-in, and dialog-box designers is to create a sensible, comprehensible, memorable, and

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with

More information

Setting Up a Paper in APA Style Using Microsoft Word 2008 for MACs

Setting Up a Paper in APA Style Using Microsoft Word 2008 for MACs Setting Up a Paper in APA Style Using Microsoft Word 008 for MACs Open Microsoft Word 008. By default Word opens a new blank document. It is easiest if you create all of these settings before you begin

More information

CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS

CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS By Carolyn H. Brown This document is created with PowerPoint 2013/15 which includes a number of differences from earlier versions of PowerPoint. GETTING

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

More information

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat The American University in Cairo Academic Computing Services Word 2000 prepared by Soumaia Ahmed Al Ayyat Spring 2001 Table of Contents: Opening the Word Program Creating, Opening, and Saving Documents

More information

Getting Started. Custom Reports Software

Getting Started. Custom Reports Software Getting Started Custom Reports Software Custom Reports software Custom reporting The Custom Reports software lets you transfer quantitative results from Data Analysis into the Custom Reports spreadsheet

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

Chapter 6. Task-Related Organization. Single Menus. Menu Selection, Form Fill-in and Dialog Boxes. Binary Menus Radio Buttons Button Choice

Chapter 6. Task-Related Organization. Single Menus. Menu Selection, Form Fill-in and Dialog Boxes. Binary Menus Radio Buttons Button Choice Chapter 6 Menu Selection, Form Fill-in and Dialog Boxes Task-Related Organization "The primary goal for menu, form fill-in, and dialog-box designers is to create a sensible, comprehensible, memorable,

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

More information

Note: In this guide, wherever you see an underlined letter as part of a command word (ex. File), that refers to the keyboard shortcut

Note: In this guide, wherever you see an underlined letter as part of a command word (ex. File), that refers to the keyboard shortcut E-Mail Guide Using Microsoft Exchange New User Checklist If you are a new user to Microsoft Exchange, you should take the following steps to insure that your account remains secure, organized, and personalized:

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template Microsoft QUICK Source Word 2007 Getting Started The Word Window u vw x y z u Quick Access Toolbar contains shortcuts for the most commonly used tools. v Microsoft Office Button contains common file and

More information

WORD PROCESSING FOR SALE. By Shel Silverstein

WORD PROCESSING FOR SALE. By Shel Silverstein ASSIGNMENT #1 ~ Scavenger Hunt 2. Your job is to retrieve several documents. Read the poem, and then write down on the worksheet the clue word you find, then you will close and exit the file. 3. Each clue

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

MICROSOFT WORD 2010 BASICS

MICROSOFT WORD 2010 BASICS MICROSOFT WORD 2010 BASICS Word 2010 is a word processing program that allows you to create various types of documents such as letters, papers, flyers, and faxes. The Ribbon contains all of the commands

More information

Computer Nashua Public Library Introduction to Microsoft Word 2010

Computer Nashua Public Library Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with Word. You can make your documents more

More information

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE Word Tutorial 3 Creating a Multiple- Page Report COMPREHENSIVE Objectives Format headings with Quick Styles Insert a manual page break Create and edit a table Sort rows in a table Modify a table s structure

More information

Microsoft Office Word. Help. Opening a Document. Converting from Older Versions

Microsoft Office Word. Help. Opening a Document. Converting from Older Versions Microsoft Office 2007 - Word Help Click on the Microsoft Office Word Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 Contents Starting Excel... 2 Excel Window Properties... 2 The Ribbon... 3 Tabs... 3 Contextual Tabs... 3 Dialog Box Launchers... 4 Galleries... 5 Minimizing the Ribbon... 5 The

More information

Excel 2010: Basics Learning Guide

Excel 2010: Basics Learning Guide Excel 2010: Basics Learning Guide Exploring Excel 2010 At first glance, Excel 2010 is largely the same as before. This guide will help clarify the new changes put into Excel 2010. The File Button The purple

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Lehigh University Library & Technology Services

Lehigh University Library & Technology Services Lehigh University Library & Technology Services Start Word Open a file called day2 Microsoft WORD 2003 Day 2 Click the Open button on the Standard Toolbar Go to the A: drive and highlight day2 and click

More information

Designer Reference 1

Designer Reference 1 Designer Reference 1 Table of Contents USE OF THE DESIGNER...4 KEYBOARD SHORTCUTS...5 Shortcuts...5 Keyboard Hints...5 MENUS...7 File Menu...7 Edit Menu...8 Favorites Menu...9 Document Menu...10 Item Menu...12

More information

Formatting, Saving and Printing in Word 2013

Formatting, Saving and Printing in Word 2013 Revision 3 (--04) Computer Basics Formatting, Saving and Printing in Word 03 MICROSOFT WORD 03: This program allows you to create new documents, make easy changes, insert media, and effectively save and

More information

STAR OFFICE WRITER. Lesson 2

STAR OFFICE WRITER. Lesson 2 Lesson 2 STAR OFFICE WRITER 1. A is a named set of defaults for formatting text. a. Font b. Tab c. Page d. Style 2. is the keyboard shortcut for justified alignment. a. Ctrl + J b. Ctrl + C c. Ctrl + V

More information

GETTING STARTED WITH MICROSOFT WORD 2016

GETTING STARTED WITH MICROSOFT WORD 2016 For class, open a Blank Document. GETTING STARTED WITH MICROSOFT WORD 2016 MICROSOFT WORD PART 2 OFFICE 2016 INSERTING TEXT: Look at the document window and find the blinking cursor, this is where the

More information

Word 2010 Beginning. Technology Integration Center

Word 2010 Beginning. Technology Integration Center Word 2010 Beginning File Tab... 2 Quick Access Toolbar... 2 The Ribbon... 3 Help... 3 Opening a Document... 3 Documents from Older Versions... 4 Document Views... 4 Navigating the Document... 5 Moving

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

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

Access 2003 Introduction to Report Design

Access 2003 Introduction to Report Design Access 2003 Introduction to Report Design TABLE OF CONTENTS CREATING A REPORT IN DESIGN VIEW... 3 BUILDING THE REPORT LAYOUT... 5 SETTING THE REPORT WIDTH... 5 DISPLAYING THE FIELD LIST... 5 WORKING WITH

More information

Microsoft Word Introduction to Word Processors

Microsoft Word Introduction to Word Processors Microsoft Word 2007 Introduction to Word Processors Practical Objectives After completing this practical, you will be able to: Perform basic tasks in a word processor. Edit and format text. Work with tables

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with

More information

SKILL AREA 210: USE A WORD PROCESSING SOFTWARE. Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows...5

SKILL AREA 210: USE A WORD PROCESSING SOFTWARE. Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows...5 Contents Microsoft Word 2007...5 Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows...5 The Microsoft Office Button...6 The Quick Access Toolbar...6 The Title Bar...6 The Ribbon...6 The Ruler...6

More information

PowerPoint Module 2: Modifying a Presentation

PowerPoint Module 2: Modifying a Presentation 1. In the Outline pane, a highlighted slide icon next to the slide number indicates that the slide is selected. True PowerPoint 26 LEARNING OBJECTIVES: BESK.OFIN.16.297 - Enter text in Outline view 2.

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

HOW TO USE THIS MANUAL

HOW TO USE THIS MANUAL PdMA MCEGold PRODUCT SUPPORT MANUAL Thank you for purchasing the PdMA MCEGold. This manual has been written to help you understand MCEGold features and how using it will enhance your motor reliability

More information

ACCT 133 Excel Schmidt Excel 2007 to 2010 Conversion

ACCT 133 Excel Schmidt Excel 2007 to 2010 Conversion ACCT 133 Excel Schmidt Excel 2007 to 2010 Conversion Note: Use this handout in connection with the handout on the parts of the Excel 2010 worksheet. This will allow you to look at the various portions

More information

Understanding Word Processing

Understanding Word Processing Understanding Word Processing 3.0 Introduction In this chapter you are going to learn how to create a simple memo or note or a complex and complicated multi column business document using word processing

More information

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting:

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting: Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics Formatting text and numbers In Excel, you can apply specific formatting for text and numbers instead of displaying all cell content

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Beginning a presentation

Beginning a presentation L E S S O N 2 Beginning a presentation Suggested teaching time 40-50 minutes Lesson objectives To learn how to create and edit title and bullet slides, you will: a b c d Select slide types by using the

More information

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

More information

Basic Microsoft Word

Basic Microsoft Word (Demonstrated using Windows XP) An Introduction to Word Processing Adapted from Taskstream Word Tutorial (2005) < http://www.taskstream.com > Updated 4/05 by Dr. Bruce Ostertag What can Microsoft Word

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9 TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 DEFINITIONS... 3 WHY WOULD YOU USE THIS?... 3 STEP BY STEP... 3 USING WORD S TOOLBARS... 5 DEFINITIONS... 5 WHY WOULD

More information

Solo 4.6 Release Notes

Solo 4.6 Release Notes June9, 2017 (Updated to include Solo 4.6.4 changes) Solo 4.6 Release Notes This release contains a number of new features, as well as enhancements to the user interface and overall performance. Together

More information

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure.

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure. Introduction to SymWord SymWord is a simple to use, talking, symbol-word processor. It has the basic functionality of a word processor. SymWord can also be configured to produce speech and/or display text

More information

INFORMATION TECHNOLOGY

INFORMATION TECHNOLOGY INFORMATION TECHNOLOGY PowerPoint Presentation Section Two: Formatting, Editing & Printing Section Two: Formatting, Editing & Printing By the end of this section you will be able to: Insert, Edit and Delete

More information

Access: Printing Data with Reports

Access: Printing Data with Reports Access: Printing Data with Reports Reports are a means for displaying and summarizing data from tables or queries. While forms are primarily for on-screen viewing, reports are for presenting your data

More information

Introduction. Getting Started. Selecting a Template. 1 of 1

Introduction. Getting Started. Selecting a Template. 1 of 1 1 of 1 Introduction Visual materials are one of the most effective means of communicating a message. They can give a presentation a professional quality. Visuals help a speaker to be well prepared, organized,

More information

Exploring Microsoft Office Word 2007

Exploring Microsoft Office Word 2007 Exploring Microsoft Office Word 2007 Chapter 3: Enhancing a Document Robert Grauer, Keith Mulbery, Michelle Hulett Objectives Insert a table Format a table Sort and apply formulas to table data Convert

More information

Creating a PowerPoint Presentation

Creating a PowerPoint Presentation powerpoint 1 Creating a PowerPoint Presentation Getting Started 1. Open PowerPoint from the "Start" "Programs" Microsoft Office directory. 2. When starting PowerPoint, it usually starts with a new blank

More information

Mi c r o s o f t Wo r d Qu i c k Re f e r e n c e Ca r d

Mi c r o s o f t Wo r d Qu i c k Re f e r e n c e Ca r d Tech Talk # 5 Mi c r o s o f t Wo r d Qu i c k Re f e r e n c e Ca r d Introduction by Renae Schmidt Hello! Welcome to Tech Talk #5. This week we are sharing a Microsoft Word 2010 Quick Reference Card.

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

WORD PROCESSING ASSIGNMENT # 1 ~ FILENAME: FONTS

WORD PROCESSING ASSIGNMENT # 1 ~ FILENAME: FONTS ASSIGNMENT # 1 ~ FILENAME: FONTS 1. Open Word 2. Click on the Office Button Navigate to the folder where your teacher has put the Word Processing U nit Files. Open the file called Fonts. 3. Create a Header

More information

Office Wo Office W r o d r 2007 Revi i ng and R d Refifini ng a D Document

Office Wo Office W r o d r 2007 Revi i ng and R d Refifini ng a D Document Office Word 2007 Lab 2 Revising i and Refining i a Document In this lab, the student will learn more about editing documents They will learn to use many more of the formatting features included in Office

More information

Setting Up a Paper in APA Style Using Microsoft Word 2007

Setting Up a Paper in APA Style Using Microsoft Word 2007 Setting Up a Paper in APA Style Using Microsoft Word 007 Open Microsoft Word 007. By default Word opens a new blank document. It is easiest if you create all of these settings before you begin your paper.

More information

Full file at Chapter 2: Creating a User Interface

Full file at   Chapter 2: Creating a User Interface Chapter 2: Creating a User Interface TRUE/FALSE 1. Text boxes accept and display information automatically, so no special event is necessary for them to do their assigned task. T PTS: 1 REF: 84 2. A button

More information

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More.

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More. SBCUSD IT Training Program Word Introduction Page Setup, Paragraph Attributes, Printing and More Revised 2/15/2018 SBCUSD IT Training Page 1 CONTENTS Cursor Movement... 4 Selecting Text... 5 Font/Typeset

More information

MICROSOFT WORD. Table of Contents. What is MSWord? Features LINC TWO

MICROSOFT WORD. Table of Contents. What is MSWord? Features LINC TWO Table of Contents What is MSWord? MS Word is a word-processing program that allows users to create, edit, and enhance text in a variety of formats. Word is a powerful word-processor with sophisticated

More information

Microsoft Word 2016 LEVEL 1

Microsoft Word 2016 LEVEL 1 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Word 2016 LEVEL 1 kcls.org/techtutor Microsoft Word 2016 Level 1 Manual Rev 11/2017 instruction@kcls.org Microsoft Word 2016 Level 1 Welcome

More information

Introduction to Microsoft Office 2016: Word

Introduction to Microsoft Office 2016: Word Introduction to Microsoft Office 2016: Word Last Updated: September 2018 Cost: $2.00 Microsoft Word is a word processing software. You can use it to type letters, reports, and other documents. This class

More information

Excel Tutorial 1

Excel Tutorial 1 IT٢.we Excel 2003 - Tutorial 1 Spreadsheet Basics Screen Layout Title bar Menu bar Standard Toolbar Other Tools Task Pane Adding and Renaming Worksheets Modifying Worksheets Moving Through Cells Adding

More information

Editing Documents on Your Mac (Part 1 of 3) Review

Editing Documents on Your Mac (Part 1 of 3) Review Note: This discussion is based on MacOS, 10.2.2 (Sierra). Some illustrations may differ when using other versions of Mac OS or OS X. Whether it s an email message or an article for a newsletter, we all

More information

LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD. : Putu Putra Astawa, S.Kom.,M.Kom

LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD. : Putu Putra Astawa, S.Kom.,M.Kom LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD Author : Putu Putra Astawa, S.Kom.,M.Kom Date : June 09, 2014 and June 16, 2014 Time : 08.30-10.45 Am. Materials Needed : Computer, Work Sheet Overview

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

Bold, Italic and Underline formatting.

Bold, Italic and Underline formatting. Using Microsoft Word Character Formatting You may be wondering why we have taken so long to move on to formatting a document (changing the way it looks). In part, it has been to emphasise the fact that

More information

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button.

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button. Word 2007 There are a lot of new changes to Office 2007. This handout will provide a few examples on how to do basic formatting. If at any point you get stuck, remember that Office has a feature that allows

More information

PowerPoint Basics (Office 2000 PC Version)

PowerPoint Basics (Office 2000 PC Version) PowerPoint Basics (Office 2000 PC Version) Microsoft PowerPoint is software that allows you to create custom presentations incorporating text, color, graphics, and animation. PowerPoint (PP) is available

More information

Single Menus No other menus will follow necessitating additional user choices

Single Menus No other menus will follow necessitating additional user choices 57 UNIT-III STRUCTURES OF MENUS Single Menus No other menus will follow necessitating additional user choices Sequential Linear Menus Simultaneous Menus 58 Hierarchical Menus When many relationships exist

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

Word 2013 Beginning. Technology Integration Center

Word 2013 Beginning. Technology Integration Center Word 2013 Beginning Getting Started... 2 Quick Access Toolbar... 3 The Ribbon... 3 Help... 4 Compatibility Mode... 4 Document Views... 4 Navigating the Document... 5 Moving Around in the Document... 5

More information

Add Bullets and Numbers

Add Bullets and Numbers . Lesson 5: Adding Bullets and Numbers, If you have lists of data, you may want to bullet or number them. When using Microsoft Word, bulleting and numbering are easy. The first part of this lesson teaches

More information

Dreamweaver Tutorials Working with Tables

Dreamweaver Tutorials Working with Tables Dreamweaver Tutorials This tutorial will explain how to use tables to organize your Web page content. By default, text and other content in a Web page flow continuously from top to bottom in one large

More information

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display.

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display. Status Bar The status bar is located on the bottom of the Microsoft Word window. The status bar displays information about the document such as the current page number, the word count in the document,

More information