Full file at Programming in Visual Basic 2010

Size: px
Start display at page:

Download "Full file at https://fratstock.eu Programming in Visual Basic 2010"

Transcription

1 OBJECTIVES: Chapter 2 User Interface Design Upon completion of this chapter, your students will be able to 1. Use text boxes, masked text boxes, rich text boxes, group boxes, check boxes, radio buttons, and picture boxes effectively. 2. Set the BorderStyle property to make controls appear flat or three-dimensional. 3. Select multiple controls and move them, align them, and set common properties. 4. Make your projects easy for the user to understand and operate by defining access keys, setting an Accept and a Cancel button, controlling the tab sequence, resetting the focus during program execution, and causing ToolTips to appear. 5. Clear the contents of text boxes and labels. 6. Make a control visible or invisible at run time by setting its Visible property. 7. Disable and enable controls at design time and run time. 8. Change text color during program execution. 9. Code multiple statements for one control using the With and End With statements. 10. Concatenate (join) strings of text. 11. Download the line and shape controls, add them to the toolbox, and use the controls on your forms. Chapter Highlights: CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip component CHAPTER OUTLINE: I. Introducing More Controls A. Text Boxes Review Question 1 Text boxes are used primarily for user input. The Text property holds the value input by the user. You also can assign a literal to the text property during design time or run time. Text Boxes have a Multiline and WordWrap property that can allow a long Text property to 2-1

2 wrap to multiple lines. The text will wrap to the width of the control, which must be tall B. enough to display multiple lines. Masked Text Boxes Review Question 2 A MaskedTextBox has a Mask property that allows you to specify the data type and format C. of the input data. Rich Text Boxes Review Question 3, 4 A RichTextBox is a specialized text box that allows additional formatting of the text. RichText Boxes have a Multiline and WordWrap property that can allow a long Text property to wrap to multiple lines. The text will wrap to the width of the control, which must be tall enough to display multiple lines. D. Displaying Text on Multiple Lines E. Group Boxes Group boxes are used as containers for other controls and to group like items on a form. F. Check Boxes G. Radio Buttons Review Question 5, 6 Check boxes and radio buttons allow the user to make choices. In a group of radio buttons, only one can be selected; but in a group of check boxes, any number of the boxes may be selected. The current state of check boxes and radio buttons is stored in the Checked property; the H. CheckChanged event occurs when the user clicks on one of the controls. Picture Boxes Review Question 7 Picture box controls hold a graphic, which is assigned to the Image property. Set the SizeMode property to StretchImage to make the image resize to fit the control. I. Using Smart Tags J. Using Images for Forms and Controls The Resources tab of the Project Designer can be used to add, remove, and rename images in the project Resources folder. Forms and controls can display images from the project s resources. Use the form s BackgroundImage property and a control s Image property. K. Setting a Border and Style The BorderStyle property of many controls can be set to None, Fixed Single, or Fixed3D, to determine whether the control appears flat or three-dimensional. L. Drawing a Line Use a Label control to create a line on a form. II. Working with Multiple Controls Review Question 8 A. Selecting Multiple Controls You can select multiple controls and treat them as a group, including setting common properties at once, moving them, or aligning them. B. Deselecting a Group of Controls C. Moving Controls as a Group D. Setting Properties for Multiple Controls E. Aligning Controls III. Designing Your Applications for User Convenience A. Designing the User Interface Make your programs easier to use by following Windows standard guidelines for colors, control size and placement, access keys, default and Cancel buttons, and tab order. B. Defining Keyboard Access Keys Review Question 9 Define keyboard access keys by including an ampersand in the Text property of buttons, 2-2

3 IV. radio buttons, check boxes, and labels. C. Setting the Accept and Cancel Buttons Review Question 10 Set the AcceptButton property of the form to the desired button so that the user can press Enter to select the button. If you set the form's CancelButton property to a button, that button will be selected when the user presses the Esc key. D. Setting the Tab Order for Controls Review Question 12, 13 The focus moves from control to control as the user presses the Tab key. The sequence for tabbing is determined by the TabIndex properties of the controls. The Tab key stops only on controls that have their property set to True. E. Setting the Form s Location on the Screen F. Creating ToolTips Review Question 11 Add a ToolTip control to a form and then set the ToolTip on ToolTip1 property of a control to make a ToolTip appear when the user pauses the mouse pointer over the control. You can set the properties of the ToolTip component to modify the background, the foreground, shape, and an icon for the ToolTips. Coding for the Controls A. Clearing Text Boxes and Labels Review Question 15 Clear the Text property of a text box or a label by setting it to an empty string. Text boxes B. also can be cleared using the Clear method. Resetting the Focus Review Question 14 To make a control have the focus, which makes it the active control, use the Focus method. Using the Focus method of a text box makes the insertion point appear in the text box. You cannot set the focus to a disabled control. C. Setting the Checked Property of Radio Buttons and Check Boxes You can set the Checked property of a radio button or check box at run time and also set the Visible property of controls in code. D. Setting Visibility at Run Time E. Disabling Controls Controls can be disabled by setting the Enabled property to False. F. Setting Properties Based on User Actions G. Changing the Color of Text Change the color of text in a control by changing its ForeColor property. You can use the color constants to change colors during run time. H. Using Radio Buttons for Selecting Colors I. Changing Multiple Properties of a Control Review Question 16 The With and End With statements provide an easy way to refer to an object multiple times J. without repeating the object s name. Concatenating Text Review Question 17 Joining two strings of text is called concatenation and is accomplished by placing an ampersand between the two elements. (A space must precede and follow the K. ampersand.) Continuing Long Program Lines Review Question 18 Visual Basic 2010 offers implicit line continuation as well as the traditional:use a space and an underscore to continue a long statement on another line. Be sure to demonstrate implicit continuation! L. Downloading and Using the Line and Shape Controls V. Your Hands-On Programming Example A. Planning the Project 2-3

4 B. The Project Coding Solution VI. Good Programming Habits VII. Summary VIII. Key Terms IX. Review Questions X. Programming Exercises XI. Case Studies TEACHING SUGGESTIONS: You can use any graphic file (with the proper format) that you have available. Demonstration Idea: The hands-on example in the back of chapter 2 can be used as your demonstration model. The example uses many of the new controls and topics introduced in this chapter. The Basic code used in the example is brief, and will keep your student's attention. Begin by explaining the purpose of the project and talk through, or write on the board, each of the three planning steps: (1) sketch the form, (2) list the objects and properties that are needed, and (3) plan the code that will be used for each of the procedures that will execute when your project runs. Chapter 2 introduces many new objects and properties. Beginners are often confused about the difference between labels and text boxes. Give examples of situations where text boxes are used, such as a form that will be filled in for an employment application. Remember, a user can change what is displayed in a text box. There are many options available for customizing the user interface. The BorderStyle property is used for displaying controls as flat or 3D. The TextAlign property is used to change the alignment of the text in text boxes. The ForeColor (color of text) property can be used to enhance the appearance of the user interface. Recommend that your students read "Designing the User Interface" from Chapter 2. This section of the text suggests colors and fonts that are "comfortable" for the user. The MaskedTextBox and the RichTextBox controls are specialized forms of the TextBox control. With the MaskedTextBox you can specify the format of the data required of the user by selecting from the options in the Mask property. The RichTextBox allows formatting within the box. Deciding whether to use a radio button or a check box can be confusing. Quiz your students on what would be used in each of these situations on a credit application: Your income range below $25,000, $25,000 to $59,999, above $60,000 (radio buttons) The ages of your children under 3, 4-6, 7-10, 11-13, over 13 (check boxes) Number of years with current employer less than 1, 2-4, 5 or more (radio buttons) Types of current credit Department Store, Gasoline, Home Loan, Other (check boxes) Pictures can be placed on a form with a PictureBox control. Images are added to a project using the Resources dialog box. This dialog box appears when the programmer clicks on the Image property and clicks on the properties button. 2-4

5 Demonstrate how controls can be selected individually or as a group. Show how controls can be moved as a group and properties can be set as a group. Demonstrate how multiple controls can be aligned by selecting the group and then using the buttons on the Layout toolbar or the corresponding items on the Format menu. HELPFUL HINT! To change the picture in the form s Title bar, change the form s Icon property. Explain that user convenience is important. Changing the Text property to include the "&" will allow keyboard access with the ALT key. Emphasize that programmers should be careful not to assign duplicate access keys on the same form. Demonstrate how you can make one of your buttons the default button by setting the AcceptButton property of the form to the button name. When the user presses ENTER, that button is automatically selected and the code in the button executes. Also, demonstrate how you can select a cancel button. The cancel button is the button that is selected when the user presses the ESC key. You can make a button the cancel button by setting the form's CancelButton property. Note that these are properties of the form. Demonstrate and discuss the importance of having the tab key work properly by setting the TabIndex and properties. You can also view the tab indexes of all controls in the design view by selecting the View menu and then choosing Tab Order (the form must be displayed). Show how you can set the StartPosition property of a form to specify its location when the form is displayed. This is useful for all forms that are not maximized. Add a Tooltip to a control and then run the program and let the mouse pointer pause over the object. Note that a ToolTip component must be added to the component tray in order for the controls on the form to have the Tooltip on ToolTip1 property. COMMON ERROR: When students write code to clear a text box or label, many times they will not use an empty string. The empty string is "" (no space between the two quotation marks). Often, students will type a blank space in between the quotes. This will cause them frustration in later chapters when they are validating text boxes for input and the test finds a blank space and identifies the object as not being empty. Explain the use of the Focus method to make the insertion point appear in the correct object. Note that the Checked property of radio buttons and check boxes can be tested for True or False to determine if they are selected. Discuss the real advantage of using the With statement. Using With/EndWith is more efficient than spelling out the object in each statement. Your Visual Basic projects will run a little faster if you use With/EndWith. On a large, complicated project, the savings can be significant. Practice concatenation with these examples: MessageLabel.Text = "One, " & "Two, " & "Three" NameLabel.Text = "John " & "Doe" WeatherLabel.Text = "Hello, " & NameTextBox.Text & "! Today the weather is warm." Don t forget punctuation in your concatenation: MessageLabel.Text = "Hello, my name is " & NameTextBox.Text & "." Don t forget to demonstrate implicit line continuation, new in Visual Basic 2010! 2-5

6 Chapter 2 User Interface Design ANSWERS TO REVIEW QUESTIONS 1. You can display program output in a text box or a label. When should you use a text box? When is a label appropriate? Use a text box control when you want the user to type some input. Use a label control when you want to display information that the user cannot change. Labels can be used to display a message or the result of a calculation. 2. What would be the advantage of using a masked text box rather than a text box? The masked text box control is a specialized form of the TextBox control. You can specify the format (the Mask property) of the data required of the user, for example, a zip code, a date, a phone number, or a social security number. At run time, the user cannot enter characters that do not conform to the mask. 3. When would it be appropriate to use a rich text box instead of a text box? The rich text box offers a variety of formatting features that are not available in text boxes. In a rich text box, the user can apply character formatting, much like using a word processor. It would be appropriate to use a rich text box whenever text should be formatted, or if the text will flow over multiple lines. 4. What properties of a TextBox and RichTextBox must be set to allow a long Text property to wrap to multiple lines? In order for text boxes and rich text boxes to wrap to a second line, the WordWrap and Multiline properties must be set to True. The WordWrap property determines whether the contents should wrap to a second line if they do not fit on a single line. The property is set to True by default on both the text box and the rich text box. The TextBox and the RichTextBox controls have a Multiline property, which is set to False by default on a text box, and to True on a rich text box. 5. How does the behavior of radio buttons differ from the behavior of check boxes? Radio buttons allow the user to select only one button of a group. In any group of check boxes, any number of boxes may be selected. 6. If you want two groups of radio buttons on a form, how can you make the groups operate independently? In order to create two groups of radio buttons that operate independently, you should place each group inside of its own group box. A group of radio buttons inside a group box function together as a group. The best method is to first create a group box and then draw each radio button inside the group box. Don t place the radio button on the form and drag it inside the group box if you do, it will still belong to the form s group, not to the group in the group box. Repeat the process to create another group box with radio buttons. 7. Explain how to make a graphic appear in a picture box control. A PictureBox control can hold an image. You can set a picture box s Image property to a graphic file with an extension of.bmp,.gif,.jpg,.jpeg,.png,.ico,.emf or.wmf. Add your images to the project's resources, then assign the resource to the Image property of the PictureBox control. Place a PictureBox control on a form and then select its Image property in the Properties window. Click on the Properties button to display a Select Resource dialog box where you can select images that you 2-6

7 have already added, or add new images. Click on the Import button of the Select Resource dialog box to add images. An Open dialog box appears where you can navigate to your image files. PictureBox controls have several useful properties that you can set at design time or run time. For example, set the SizeMode property to StretchImage to make the picture enlarge to fill the control. You can set the Visible property to False to make the picture box disappear. 8. Describe how to select several labels and set them all to 12-point font size at once. There are several methods of selecting multiple controls. If the controls are near each other, the easiest method is to use the mouse to drag a selection box around the controls. Point to one corner of a box surrounding the controls, press the mouse button, and drag to the opposite corner. When you release the mouse button, each control will have selection handles. You can also select multiple controls, one at a time. Click on one control to select it, hold down the Ctrl key or the Shift key, and click on the next control. You can keep the Ctrl or Shift key down and continue clicking on controls you wish to select. Ctrl click (or Shift click) on a control a second time to deselect it without changing the rest of the group. With the labels selected, scroll to the Font property and click on the plus sign to the left (of the Font property) to open the font options. Change the Size property to 12 and press Enter. 9. What is the purpose of keyboard access keys? How can you define them in your project? How do they operate at run time? Many people prefer to use the keyboard, rather than a mouse, for most operations. Windows is set up so that most everything can be done with either the keyboard or a mouse. You can make your projects respond to the keyboard by defining access keys, also called hot keys. You can set access keys for buttons, radio buttons, and check boxes when you define their Text properties. Type an ampersand (&) in front of the character you want for the access key; Visual Basic underlines the character. During run time you can operate the keyboard access keys by pressing and holding Alt + the key that corresponds to the underlined character. For example, use the Exit button with Alt + x. 10. Explain the purpose of the AcceptButton and CancelButton properties of the form. Give an example of a good use for each. Once a person s fingers are on the keyboard to type, most people prefer to press common keys rather than pick up the mouse. If one of the buttons on the form is the default button, pressing Enter is the same as clicking the button. You can make one of your buttons the default button by setting the AcceptButton property of the form to the button name. When the user presses Enter, that button is automatically selected. You can also select a cancel button. The cancel button is the button that is selected when the user presses the Esc key. You can make a button the cancel button by setting the form's CancelButton property. A good example of when to use these properties is on a form with OK and Cancel buttons. You may want to set the form's AcceptButton property to OkButton and the CancelButton property to CancelButton. 11. What is a ToolTip? How can you make a ToolTip appear? ToolTips are those small labels that pop up when you pause (rest) your pointer over a toolbar button or control. To define ToolTips, select the ToolTip control from the toolbox and click anywhere on the form. The new control appears in the component tray that opens at the bottom of the Form Designer. After you add the ToolTip control, examine the properties list for other controls on the form, such as buttons, text boxes, labels, radio buttons, check boxes, and even the form itself. Each has a new ToolTip on ToolTip1 property (assuming that you keep the default name, ToolTip1, for the control). Now you can change the ToolTip on ToolTip1 property to the text that you want displayed when the pointer pauses on the object. 2-7

8 12. What is the focus? How can you control which object has the focus? In Windows programs, one control on the form always has the focus. You can see the focus change as you Tab from control to control. For controls such as buttons, the focus appears as a thick blue border. For text boxes, the insertion point (also called the cursor) appears inside the box. Some controls can receive the focus, others cannot. For example, text boxes and buttons can receive the focus, but labels and picture boxes cannot. When a program begins running, the focus is on the control with the lowest TabIndex. Using code, the Focus method allows the programmer to control which object has the focus. For example, NameTextBox.Focus() will make the insertion point (focus) appear in a textbox named NameTextBox. 13. Assume you are testing your project and don t like the initial position of the insertion point. Explain how to make the insertion point appear in a different text box when the program begins. When your program begins running, the focus is on the control with the lowest TabIndex (usually 0). Set the TabIndex to 0 for the control where you want the insertion point to appear when the program begins. 14. During program execution you want to return the insertion point to a text box called AddressTextBox. What Basic statement will you use to make that happen? AddressTextBox.Focus() 15. What Basic statements will clear the current contents of a text box and a label? You can clear out the contents of a text box or label by setting the property to an empty string. Use "" (no space between the two quotation marks) or String.Empty. For example: AddressTextBox.Text = "" or NameLabel.Text = "" or AddressTextBox.Text = String.Empty You can also clear out a text box using the Clear method: AddressTextBox.Clear() 16. How are the With and End With statements used? Give an example. The With and End with statements are used to change several properties of a single control. You specify an object name in the With statement. All subsequent statements until the End With relate to that object. The statements beginning with With and ending with End With are called a With block. The statements inside the block are indented for readability. The real advantage of using the With statement, rather than spelling out the object for each statement, is that With is more efficient. Your Visual Basic projects will run a little faster if you use With. On a large, complicated project, the savings can be significant. Example: With TitleTextBox.Visible = True.ForeColor = Color.Blue.Focus() End With 17. What is concatenation and when would it be useful? Concatenation is a process whereby you can "tack" one string of characters to the end of another. Use an ampersand (&), preceded and followed by a space, between the two strings. Concatenating is very useful when you want to join a string literal and a property. For example: MessageLabel.Text = "Your name is: " & NameTextBox.Text & "." 18. Explain how to continue a very long Basic statement onto another line. When a Basic statement becomes too long for one line, use a line-continuation character. You can type a space and an underscore at the end of the line, press Enter, and continue the statement on the 2-8

9 next line. It is OK to indent the continued lines. The only restriction is that the line-continuation character must appear between elements; you cannot place a continuation in the middle of a literal, or split the name of an object or property. CHAPTER TOPICS COVERED IN THE PROGRAMMING EXERCISES Solutions for each of the Programming Exercises are available on the Web site for this textbook. Checkmarks appear in the following tables to outline the chapter topics used in the solution of each exercise. A brief description for each Programming Exercise is given. Please refer to the textbook for complete instructions. 2.1 Switch a light bulb on and off. Use concatenation. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible OvalShape ForeColor WordWrap PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip 2.2 Display the flag of 4 different countries. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip 2.3 Display a weather report. Use concatenation. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex 2-9

10 ToolTip 2.4 Input the user name and display a message of the day. Use concatenation. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip 2.5 Input information and display the lines of output for a mailing label. Use concatenation. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip VERY BUSY (VB) MAIL ORDER Design and code a project that has shipping information. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip VALLEY BOULEVARD (VB) AUTO CENTER Modify the VB Auto project from chapter 1, replacing the buttons with images in picture boxes. 2-10

11 CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip VIDEO BONANZA Display the location of videos using radio buttons. A check box allows the user to display or hide a message for members. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip VERY VERY BOARDS Create a project that will display an advertising screen for Very Very Boards. CheckBox AcceptButton Text Enable With GroupBox BorderStyle TextAlign Focus End With LineShape CancelButton ToolTip on ToolTip1 MaskedTextBox Checked Visible PictureBox Image RadioButton Multiline RectangleShape SizeMode RichTextBox StartPosition Text box TabIndex ToolTip 2-11

Dive Into Visual C# 2010 Express

Dive Into Visual C# 2010 Express Dive Into Visual C# 2010 Express 2 Seeing is believing. Proverb Form ever follows function. Louis Henri Sullivan Intelligence is the faculty of making artificial objects, especially tools to make tools.

More information

Introductionto the Visual Basic Express 2008 IDE

Introductionto the Visual Basic Express 2008 IDE 2 Seeing is believing. Proverb Form ever follows function. Louis Henri Sullivan Intelligence is the faculty of making artificial objects, especially tools to make tools. Henri-Louis Bergson Introductionto

More information

2 USING VB.NET TO CREATE A FIRST SOLUTION

2 USING VB.NET TO CREATE A FIRST SOLUTION 25 2 USING VB.NET TO CREATE A FIRST SOLUTION LEARNING OBJECTIVES GETTING STARTED WITH VB.NET After reading this chapter, you will be able to: 1. Begin using Visual Studio.NET and then VB.NET. 2. Point

More information

WINDOWS NT BASICS

WINDOWS NT BASICS WINDOWS NT BASICS 9.30.99 Windows NT Basics ABOUT UNIVERSITY TECHNOLOGY TRAINING CENTER The University Technology Training Center (UTTC) provides computer training services with a focus on helping University

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

Using Inspiration 7 I. How Inspiration Looks SYMBOL PALETTE

Using Inspiration 7 I. How Inspiration Looks SYMBOL PALETTE Using Inspiration 7 Inspiration is a graphic organizer application for grades 6 through adult providing visual thinking tools used to brainstorm, plan, organize, outline, diagram, and write. I. How Inspiration

More information

MS Office Word Tabs & Tables Manual. Catraining.co.uk Tel:

MS Office Word Tabs & Tables Manual. Catraining.co.uk Tel: MS Office 2010 Word Tabs & Tables Manual Catraining.co.uk Tel: 020 7920 9500 Table of Contents TABS... 1 BASIC TABS WITH ALIGNMENT... 1 DEFAULT TAB STOP... 1 SET MANUAL TAB STOPS WITH RULER... 2 SET MANUAL

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

Word 2013 Quick Start Guide

Word 2013 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, and Word Options. Ribbon: Logically organize actions onto Tabs, Groups, and Buttons to facilitate finding commands. Active Document

More information

Full file at

Full file at T U T O R I A L 3 Objectives In this tutorial, you will learn to: Set the text in the Form s title bar. Change the Form s background color. Place a Label control on the Form. Display text in a Label control.

More information

Chapter 2. Creating Applications with Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of

Chapter 2. Creating Applications with Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of Chapter 2 Creating Applications with Visual Basic Addison Wesley is an imprint of 2011 Pearson Addison-Wesley. All rights reserved. Section 2.1 FOCUS ON PROBLEM SOLVING: BUILDING THE DIRECTIONS APPLICATION

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

Tutorial 3 - Welcome Application

Tutorial 3 - Welcome Application 1 Tutorial 3 - Welcome Application Introduction to Visual Programming Outline 3.1 Test-Driving the Welcome Application 3.2 Constructing the Welcome Application 3.3 Objects used in the Welcome Application

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

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

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

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

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

More information

Tutorials. Lesson 3 Work with Text

Tutorials. Lesson 3 Work with Text In this lesson you will learn how to: Add a border and shadow to the title. Add a block of freeform text. Customize freeform text. Tutorials Display dates with symbols. Annotate a symbol using symbol text.

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

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

Lesson 5: Review and Deliver Presentations Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO

Lesson 5: Review and Deliver Presentations Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Lesson 5: Review and Deliver Presentations Microsoft PowerPoint 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Set up presentations for delivery. Preview and print presentations. Prepare speaker notes and

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

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

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

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

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

Programming in C# Project 1:

Programming in C# Project 1: Programming in C# Project 1: Set the text in the Form s title bar. Change the Form s background color. Place a Label control on the Form. Display text in a Label control. Place a PictureBox control on

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

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

Microsoft PowerPoint 2013 Beginning

Microsoft PowerPoint 2013 Beginning Microsoft PowerPoint 2013 Beginning PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 File Tab... 3 Quick Access Toolbar... 3 The Ribbon... 4 Keyboard Shortcuts...

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

1. The PowerPoint Window

1. The PowerPoint Window 1. The PowerPoint Window PowerPoint is a presentation software package. With PowerPoint, you can easily create slide shows. Trainers and other presenters use slide shows to illustrate their presentations.

More information

Microsoft Powerpoint 2013

Microsoft Powerpoint 2013 Microsoft Powerpoint 2013 Lesson 4 Designing a Presentation 2014, John Wiley & Sons, Inc. Microsoft Official Academic Course, Microsoft Word 2013 1 Objectives 2014, John Wiley & Sons, Inc. Microsoft Official

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

Beginning PowerPoint XP for Windows

Beginning PowerPoint XP for Windows Beginning PowerPoint XP for Windows Tutorial Description This course introduces you to the PowerPoint program basics for creating a simple on-screen presentation. Intended Audience Individuals interested

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

Philadelphia University Faculty of Information Technology. Visual Programming

Philadelphia University Faculty of Information Technology. Visual Programming Philadelphia University Faculty of Information Technology Visual Programming Using C# -Work Sheets- Prepared by: Dareen Hamoudeh Eman Al Naji Work Sheet 1 Form, Buttons and labels Properties Changing properties

More information

A Student s Guide to Taking Notes Using Microsoft Word 2013

A Student s Guide to Taking Notes Using Microsoft Word 2013 A Student s Guide to Taking Notes Using Microsoft Word 2013 Erin Moreira UMass Amherst 2015 A Student s Guide to Taking Notes Using Microsoft Word 2013 Acknowledgements I would like to thank Professor

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

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

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Tables in Microsoft Word

Tables in Microsoft Word Tables in Microsoft Word In this lesson we re going to create and work with Tables in Microsoft Word. Tables are used to improve the organisation and presentation of data in your documents. If you haven

More information

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Intro to FrontPage OVERVIEW: This handout provides a general overview of Microsoft FrontPage. AUDIENCE: All Instructional

More information

ekaizen Lessons Table of Contents 1. ebook Basics 1 2. Create a new ebook Make Changes to the ebook Populate the ebook 41

ekaizen Lessons Table of Contents 1. ebook Basics 1 2. Create a new ebook Make Changes to the ebook Populate the ebook 41 Table of Contents 1. ebook Basics 1 2. Create a new ebook 20 3. Make Changes to the ebook 31 4. Populate the ebook 41 5. Share the ebook 63 ekaizen 1 2 1 1 3 4 2 2 5 The ebook is a tabbed electronic book

More information

Microsoft PowerPoint 2010 Beginning

Microsoft PowerPoint 2010 Beginning Microsoft PowerPoint 2010 Beginning PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 File Tab... 3 Quick Access Toolbar... 3 The Ribbon... 4 Keyboard Shortcuts...

More information

Visual Basic. murach s. (Chapter 2) TRAINING & REFERENCE. Mike Murach & Associates, Inc.

Visual Basic. murach s. (Chapter 2) TRAINING & REFERENCE. Mike Murach & Associates, Inc. TRAINING & REFERENCE murach s Visual Basic 2015 (Chapter 2) Thanks for downloading this chapter from Murach s Visual Basic 2015. We hope it will show you how easy it is to learn from any Murach book, with

More information

Using Visual Basic Studio 2008

Using Visual Basic Studio 2008 Using Visual Basic Studio 2008 Recall that object-oriented programming language is a programming language that allows the programmer to use objects to accomplish a program s goal. An object is anything

More information

Display Systems International Software Demo Instructions

Display Systems International Software Demo Instructions Display Systems International Software Demo Instructions This demo guide has been re-written to better reflect the common features that people learning to use the DSI software are concerned with. This

More information

Keynote 08 Basics Website:

Keynote 08 Basics Website: Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages and the spreadsheet program

More information

Controls. By the end of this chapter, student will be able to:

Controls. By the end of this chapter, student will be able to: Controls By the end of this chapter, student will be able to: Recognize the (Properties Window) Adjust the properties assigned to Controls Choose the appropriate Property Choose the proper value for the

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

Impress Guide. Chapter 1 Introducing Impress

Impress Guide. Chapter 1 Introducing Impress Impress Guide Chapter 1 Introducing Impress Copyright This document is Copyright 2005 2009 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

Introduction to Microsoft Word 2008

Introduction to Microsoft Word 2008 1. Launch Microsoft Word icon in Applications > Microsoft Office 2008 (or on the Dock). 2. When the Project Gallery opens, view some of the available Word templates by clicking to expand the Groups, and

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

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

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

Understanding Acrobat Form Tools

Understanding Acrobat Form Tools CHAPTER Understanding Acrobat Form Tools A Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer Bible Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer

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

Part 1: Basics. Page Sorter:

Part 1: Basics. Page Sorter: Part 1: Basics Page Sorter: The Page Sorter displays all the pages in an open file as thumbnails and automatically updates as you add content. The page sorter can do the following. Display Pages Create

More information

Basic Microsoft PowerPoint. Your First Slides. Adapted from Taskstream Word Tutorial (2003) < >

Basic Microsoft PowerPoint. Your First Slides. Adapted from Taskstream Word Tutorial (2003) <  > Your First Slides (Demonstrated using Windows XP) Adapted from Taskstream Word Tutorial (2003) < http://www.taskstream.com > Revised and updated 4/05 by Dr. Bruce Ostertag What Can PowerPoint Do For Teachers?

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Microsoft PowerPoint 2007 Beginning

Microsoft PowerPoint 2007 Beginning Microsoft PowerPoint 2007 Beginning Educational Technology Center PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 Microsoft Office Button... 3 Quick Access

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

More information

Welcome. Microsoft PowerPoint 2010 Fundamentals Workshop. Faculty and Staff Development Program

Welcome. Microsoft PowerPoint 2010 Fundamentals Workshop. Faculty and Staff Development Program Faculty and Staff Development Program Welcome Microsoft PowerPoint 2010 Fundamentals Workshop Computing Services and Systems Development Phone: 412-624-HELP (4357) Last Updated: 04/19/13 Technology Help

More information

LESSON B. The Toolbox Window

LESSON B. The Toolbox Window The Toolbox Window After studying Lesson B, you should be able to: Add a control to a form Set the properties of a label, picture box, and button control Select multiple controls Center controls on the

More information

Chapter 5. Inserting Objects. Highlights

Chapter 5. Inserting Objects. Highlights Chapter 5 Inserting Objects Highlights 5. Inserting AutoShapes, WordArts and ClipArts 5. Changing Object Position, Size and Colour 5. Drawing Lines 5.4 Inserting Pictures and Text Boxes 5.5 Inserting Movies

More information

Microsoft Word 2003 for Windows, Part 2

Microsoft Word 2003 for Windows, Part 2 Microsoft Word 2003 for Windows, Part 2 In this workshop, the following Word 2003 features will be covered: Creating and using Tables Formatting text using Styles Using MailMerge Arranging text in Columns

More information

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23 PowerPoint Level 1 Table of Contents Chapter 1 Getting Started... 7 Interacting with PowerPoint... 7 Slides... 7 I. Adding Slides... 8 II. Deleting Slides... 8 III. Cutting, Copying and Pasting Slides...

More information

Interactive Powerpoint. Jessica Stenzel Hunter Singleton

Interactive Powerpoint. Jessica Stenzel Hunter Singleton Interactive Powerpoint Jessica Stenzel Hunter Singleton Table of Contents iii Table of Contents Table of Contents... iii Introduction... 1 Basics of Powerpoint... 3 How to Insert Shapes... 3 How to Insert

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

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

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

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

Microsoft. An Introduction

Microsoft. An Introduction Microsoft Amarillo College Revision Date: February 7, 2011 Table of Contents SLIDE MASTER... 2 ACCESSING THE SLIDE MASTER... 2 BACKGROUNDS... 2 FONT COLOR OF SLIDE TITLES... 3 FONT COLOR OF BULLET LEVELS...

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

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

SchoolDesk University

SchoolDesk University SchoolDesk University Forms, Surveys, and Polls Module 101 Guided Walk-through for the basic fields, terminology, and location of tools. What is the NEW SD7 Forms Module? The NEW SchoolDesk Forms Module,

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

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

Horizon Launcher Configuration Guide

Horizon Launcher Configuration Guide Horizon Launcher Configuration Guide Windows NT and Windows 2000 are registered trademarks of Microsoft Corporation. All other product or company names are trademarks or registered trademarks of their

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

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

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

MS Word Basics. Groups within Tabs

MS Word Basics. Groups within Tabs MS Word Basics Instructor: Bev Alderman L e t s G e t S t a r t e d! Open and close MS Word Open Word from the desktop of your computer by Clicking on the Start>All programs>microsoft Office >Word 2010

More information

1) Merge the cells that contain the title and center the title

1) Merge the cells that contain the title and center the title Supplies: You will need a storage location to save your spreadsheet for use in Session 2. You will need the 2 handouts pertaining to Session 1 Instructions: Follow the directions below to create a budget

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

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

LESSON A. The Splash Screen Application

LESSON A. The Splash Screen Application The Splash Screen Application LESSON A LESSON A After studying Lesson A, you should be able to: Start and customize Visual Studio 2010 or Visual Basic 2010 Express Create a Visual Basic 2010 Windows application

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 5 AGENDA

More information

Title bar: The top most bar in Word window that usually displays the document and software names.

Title bar: The top most bar in Word window that usually displays the document and software names. 1 MICROSOFT WORD Table of Contents LINC ONE Hiding Standard toolbar, Formatting toolbar, and Status bar: To hide the Standard toolbar, click View Toolbars on the Menu bar. Check off Standard. To hide the

More information

PowerPoint 2007 Cheat Sheet

PowerPoint 2007 Cheat Sheet ellen@ellenfinkelstein.com 515-989-1832 PowerPoint 2007 Cheat Sheet Contents Templates and Themes... 2 Apply a corporate template or theme... 2 Format the slide master... 2 Work with layouts... 3 Edit

More information

Chapter 2 Using Slide Masters, Styles, and Templates

Chapter 2 Using Slide Masters, Styles, and Templates Impress Guide Chapter 2 Using Slide Masters, Styles, and Templates OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute

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

Word Processing Basics Using Microsoft Word

Word Processing Basics Using Microsoft Word Word Processing Basics Using Microsoft Word lab 3 Objectives: Upon successful completion of Lab 3, you will be able to Use Word to create a simple word processing document Understand the concept of word

More information

Microsoft Excel Keyboard Shortcuts

Microsoft Excel Keyboard Shortcuts Microsoft Excel Keyboard Shortcuts Here is a complete list of keyboard shortcuts for Microsoft Excel. Most of the shortcuts will work on all Excel versions on Windows based computer. Data Processing Shortcuts

More information

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1 DRAFT Table of Contents About this manual... ix About CuteSITE Builder... ix Getting Started... 1 Setting up... 1 System Requirements... 1 To install CuteSITE Builder... 1 To register CuteSITE Builder...

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