Location of menu elements

Size: px
Start display at page:

Download "Location of menu elements"

Transcription

1 E Creating Menus Appendix E C Page 1 07/10/06--JHR In Visual Basic 2005, you use a MenuStrip control to include one or more menus in an application. You instantiate a MenuStrip control using the MenuStrip tool, which is located in the Menus & Toolbars section of the toolbox. Each menu in an application contains a menu title, which appears on the menu bar at the top of a Windows form. When you click a menu title, its corresponding menu opens and displays a list of options, called menu items. The menu items can be commands (such as Open or Exit), separator bars, or submenu titles. As in all Windows applications, clicking a command on a menu executes the command, and pointing to a submenu title opens an additional menu of options. Each of the options on a submenu is referred to as a submenu item. The purpose of a separator bar is to visually group together the related items on a menu or submenu. Figure E.1 identifies the location of these menu elements.

2 2 Appendix E Creating Menus Separator bar FIGURE E.1 Location of menu elements Although you can create many levels of submenus, it is best to use only one level in your application, because too many layers of submenus can be confusing to the user. Each menu element is considered an object and has a set of properties associated with it. The most commonly used properties for a menu element are the Name and Text properties. The programmer uses the Name property to refer to the menu element in code. The Text property, on the other hand, stores the menu element s caption, which is the text that the user sees when he or she is working with the menu. The caption indicates the purpose of the menu element. Examples of familiar captions for menu elements include Edit, Save As, Copy, and Exit. Menu title captions should be one word only, with the first letter capitalized. Each menu title should have a unique access key. The access key allows the user to open the menu by pressing the Alt key in combination with the access key. Unlike the captions for menu titles, the captions for menu items can be from one to three words. Use book title capitalization for the menu item captions, and assign each menu item a unique access key. The access key allows the user to select the item simply by pressing the access key when the menu is open. If a menu item requires additional information from the user, the Windows standard is to place an ellipsis (...) at the end of the caption. The ellipsis alerts the user that the menu item requires more information before it can perform its task. The menus included in your application should follow the standard Windows conventions. For example, if your application uses a File menu, it should be the first menu on the menu bar. File menus typically contain commands for opening, saving, and printing files, as well as exiting the application. If your application requires Cut, Copy, and Paste commands, the commands should be placed on an Edit menu, which typically is the second menu on the menu bar. To create a menu: 1. Start Visual Studio. If necessary, close the Start Page window. 2. Open the Sales Tax Solution (Sales Tax Solution.sln) file, which is contained in the VbReloaded\Appendix E\Sales Tax Solution folder. If necessary, open the designer window and permanently display the Toolbox window. 3. Click the MenuStrip tool, which is located in the Menus & Toolbars section of the toolbox. Drag the mouse pointer to the form, then release the mouse button. A MenuStrip control named MenuStrip1 appears in the component tray, and the words Type Here appear in a box on the form s title bar, as shown in Figure E.2. Appendix E C Page 2 07/10/06--JHR

3 Creating Menus 3 Type the first menu title here MenuStrip tool Appendix E C Page 3 07/10/06--JHR MenuStrip control appears in the component tray FIGURE E.2 MenuStrip control added to the application 4. Auto-hide the Toolbox window, then temporarily display the Properties window. Click (Name) in the Properties list, and then type mainmenustrip and press Enter. You will include two menu titles on the form s menu bar: File and Calculate. The File menu will contain three menu items: a Clear Tax command, a separator bar, and an Exit command. The Calculate menu will contain two menu items: a 5% Tax command and a 6% Tax command. To add the File menu title and three menu items: 1. Click the Type Here box on the menu bar, then type &File. See Figure E.3. Second menu title First menu title First menu item on the first menu FIGURE E.3 Menu title shown in the interface Notice that a Type Here box appears below the File menu title and also to the right of the menu title. The Type Here box that appears below the menu title allows you to add a menu item to the File menu. The Type Here box that appears to the right of the menu title allows you to add another menu title to the menu bar.

4 4 Appendix E Creating Menus 2. Press Enter, then click the File menu title. Temporarily display the Properties window. Scroll the Properties window, if necessary, until you see the Text property. Notice that the property contains &File. 3. Scroll to the top of the Properties window, then click (Name). Change the menu title s name to filemenutitle and press Enter. 4. Click the Type Here box that appears in the row below the File menu title, then type &Clear Tax and press Enter. Click the Clear Tax menu item. Change the menu item s name to fileclearmenuitem and press Enter. Next, you will add a separator bar to the File menu. 5. Place your mouse pointer on the Type Here box that appears below the Clear Tax menu item, then click the list arrow that appears in the box. See Figure E.4. FIGURE E.4 Drop-down list 6. Click Separator in the list. A separator bar appears below the Clear Tax menu item. Click the separator bar, then change its name to fileseparator and press Enter. 7. Click the Type Here box that appears below the separator bar, then type E&xit and press Enter. Click the Exit menu item. Change the menu item s name to fileexitmenuitem and press Enter. 8. Save the solution, then start the application. Click File on the form s menu bar. The File menu opens and displays the Clear Tax and Exit options, which are separated by a separator bar, as shown in Figure E.5. Appendix E C Page 4 07/10/06--JHR FIGURE E.5 Open File menu 9. Click the Close button on the form s title bar. The application closes and you are returned to the designer window. Next, you will add the Calculate menu and its two options to the form.

5 Creating Menus 5 To add the Calculate menu title and two menu items: 1. Click the Type Here box that appears to the right of the File menu title, then type &Calculate and press Enter. Click the Calculate menu item, then change its name to calculatemenutitle and press Enter. 2. Click the Type Here box that appears below the Calculate menu title. Type &5% Tax and press Enter. Click the 5% Tax menu item, then change its name to calculate5menuitem and press Enter. 3. Click the Type Here box that appears below the 5% Tax menu item. Type &6% Tax and press Enter. Click the 6% Tax menu item, then change its name to calculate6menuitem and press Enter. 4. Save the solution, then start the application. Click Calculate on the form s menu bar. The Calculate menu opens and displays the 5% Tax and 6% Tax options, as shown in Figure E.6. Appendix E C Page 5 07/10/06--JHR A menu item s access key can be used only when the menu is open, whereas the shortcut key can be used only when the menu is closed. FIGURE E.6 Open Calculate menu 5. Click the Close button on the form s title bar. The application closes and you are returned to the designer window. ASSIGNING SHORTCUT KEYS Shortcut keys appear to the right of a menu item and allow you to select an item without opening the menu. For example, in Windows applications you can select the Save command when the File menu is closed by pressing Ctrl + S. You should assign shortcut keys only to commonly used menu items. In the Sales Tax Calculator application, you will assign shortcut keys to the 5% Tax and 6% Tax options on the Calculate menu. To assign shortcut keys: 1. Click the 5% Tax menu item. Click ShortcutKeys in the Properties window, then click the list arrow in the Settings box. A box opens and allows you to specify the shortcut key s modifiers and key. To assign Ctrl + 5 as the shortcut key, you specify Ctrl as the modifier and 5 as the key. 2. Click the Ctrl check box to select it. Click the list arrow that appears in the Key section. A drop-down list appears. Scroll the list until you see the number 5, then click 5 in the list. See Figure E.7.

6 6 Appendix E Creating Menus FIGURE E.7 Shortcut key specified in the ShortcutKeys box 3. Press Enter. Ctrl+5 appears in the Properties window and on the Calculate menu, as shown in Figure E.8. Shortcut key Shortcut key Appendix E C Page 6 07/10/06--JHR FIGURE E.8 Shortcut key appears in the Properties window and on the Calculate menu 4. On your own, assign Ctrl+6 as the shortcut key for the 6% Tax menu item. 5. Save the solution, then start the application. Click Calculate on the form s menu bar. Each shortcut key appears next to its corresponding menu item, as shown in Figure E.9.

7 Creating Menus 7 Shortcut keys FIGURE E.9 Shortcut keys displayed on the Calculate menu 6. Click the Close button on the form s title bar. The application closes and you are returned to the designer window. Appendix E C Page 7 07/10/06--JHR Now that the File and Calculate menus are complete, you can begin coding their menu items. First, you will code two of the items on the File menu. Coding the Exit Menu Item When the user clicks the Exit option on the File menu, the option s Click event procedure should end the Sales Tax Calculator application. To code the Exit menu item: 1. Open the Code Editor window. Replace the <yourƒname> and <currentƒdate> text with your name and the current date. 2. Open the code template for the fileexitmenuitem s Click event procedure. Type me.close() and press Enter. See Figure E.10. FIGURE E.10 Completed fileexitmenuitem s Click event procedure 3. Save the solution, then start the application. Click File on the form s menu bar, then click Exit. The application closes and you are returned to the Code Editor window. Coding the Clear Tax Menu Item When the user clicks the Clear Tax option on the File menu, the option s Click event procedure should clear the tax amount displayed in the taxlabel. To code the Clear Tax menu item: 1. Open the code template for the fileclearmenuitem s Click event procedure. Type taxlabel.text = string.empty and press Enter. See Figure E.11.

8 8 Appendix E Creating Menus FIGURE E.11 Completed fileclearmenuitem s Click event procedure 2. Save the solution. You will test the Clear Tax option in the next section. Now you will code the two items on the Calculate menu. Coding the 5% Tax Menu Item When the user clicks the 5% Tax option on the Calculate menu, the option s Click event procedure should calculate a 5% sales tax and display the amount in the taxlabel. To code the 5% Tax menu item: 1. Open the code template for the calculate5menuitem s Click event procedure. Type calculates a 5% sales tax amount and press Enter twice. 2. Type const Rate as double =.05 and press Enter. 3. Type const Message as string = _ and press Enter. Press Tab, then type The sales amount must be numeric and press Enter. 4. Type dim sales as double and press Enter, then type dim tax as double and press Enter. Type dim isconvertedsales as boolean and press Enter twice. 5. Type isconvertedsales = double.tryparse(salestextbox.text, sales) and press Enter. 6. Type if isconvertedsales then and press Enter, then type tax = sales * rate and press Enter. 7. Type else and press Enter, then type messagebox.show(message, Sales Tax Calculator, _ and press Enter. 8. Press Tab, then type messageboxbuttons.ok, messageboxicon. information). 9. Position the insertion point at the end of the EndƒIf line, then press Enter to insert a blank line. In the blank line, type taxlabel.text = tax.tostring( C2 ) and press Enter. Figure E.12 shows the completed calculate5menuitem s Click event procedure. Appendix E C Page 8 07/10/06--JHR

9 Creating Menus 9 Appendix E C Page 9 07/10/06--JHR FIGURE E.12 Completed calculate5menuitem s Click event procedure Now you will test the Calculate menu s 5% Tax option, as well as the File menu s Clear Tax option. To test the 5% Tax and Clear Tax menu items: 1. Save the solution, then start the application. Type 1000 in the Sales text box. Click Calculate on the menu bar, then click 5% Tax. The calculate5menuitem s Click event procedure calculates and displays the sales tax amount, as shown in Figure E.13. FIGURE E.13 Sales tax amount displayed in the interface Now test the Clear Tax option on the File menu, and also the 5% Tax option s shortcut key. 2. Click File on the form s menu bar, then click Clear Tax. The fileclearmenuitem s Click event procedure removes the sales tax amount from the taxlabel. Press the Ctrl (or Control) key as you type the number 5, then release the Ctrl key. The calculate5menuitem s Click event procedure calculates and displays the sales tax amount, as shown earlier in Figure E Click File on the form s menu bar, and then click Exit. The application closes and you are returned to the Code Editor window.

10 10 Appendix E Creating Menus Coding the 6% Tax Menu Item When the user clicks the 6% Tax option on the Calculate menu, the option s Click event procedure should calculate a 6% sales tax and display the amount in the taxlabel. To code and then test the 6% Tax menu item: 1. Open the code template for the calculate6menuitem s Click event procedure. 2. Copy the comment and code from the calculate5menuitem s Click event procedure to the calculate6menuitem s Click event procedure. 3. Modify the calculate6menuitem s Click event procedure as shown in Figure E.14. Change from 5 to 6 FIGURE E Save the solution, then start the application. Completed calculate6menuitem s Click event procedure 5. Type 1000 in the Sales text box. Click Calculate on the menu bar, then click 6% Tax. The calculate6menuitem s Click event procedure calculates and displays $60.00 as the sales tax amount. 6. Click File on the form s menu bar, then click Clear Tax. The fileclearmenuitem s Click event procedure removes the sales tax amount from the taxlabel. 7. Press Ctrl + 6. The calculate6menuitem s Click event procedure calculates and displays $60.00 as the sales tax amount. 8. Click File on the form s menu bar, and then click Exit. The application closes and you are returned to the Code Editor window. 9. Close the Code Editor window, then close the solution and Visual Studio. Appendix E C Page 10 07/10/06--JHR You have completed Appendix E.

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

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

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

Each time you start PastPerfect you will be presented with the main menu.

Each time you start PastPerfect you will be presented with the main menu. 2 THE BASICS This chapter will teach you how to use the most common functions of PastPerfect. Detailed instructions for specific sections of the program will be given in later chapters. STARTING PASTPERFECT

More information

Copyright 2014 Pearson Education, Inc. Chapter 7. Multiple Forms, Modules, and Menus. Copyright 2014 Pearson Education, Inc.

Copyright 2014 Pearson Education, Inc. Chapter 7. Multiple Forms, Modules, and Menus. Copyright 2014 Pearson Education, Inc. Chapter 7 Multiple Forms, Modules, and Menus Topics 7.1 Multiple Forms 7.2 Modules 7.3 Menus 7.4 Focus on Problem Solving: Building the High Adventure Travel Agency Price Quote Application Overview This

More information

Please note that this process must be repeated if a new PC is used.

Please note that this process must be repeated if a new PC is used. Appendix 2 - Using Smart Client This section of the user guide is relevant to first-time users of Agresso. There are some areas of the Agresso package that initially need to be configured by the individual

More information

Getting S tarted w ith E xcel

Getting S tarted w ith E xcel Lesson 1 - Getting Started with Excel 1 Lesson 1 Getting S tarted w ith E xcel Les s on Topics Using Excel The Workbook Exiting Excel Les s on Objectives At the end of the lesson, you will be able to:

More information

Sage Getting Started Guide. September 2017

Sage Getting Started Guide. September 2017 Sage 100 2018 Getting Started Guide September 2017 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 1 Databases and Database Objects: An Introduction Objectives Describe the features of the Access window Create a database Create tables in Datasheet and Design views Add records

More information

C H A P T E R T W E N T Y E I G H T. Create, close, and open a Web application. Add an image, text box, label, and button to a Web page

C H A P T E R T W E N T Y E I G H T. Create, close, and open a Web application. Add an image, text box, label, and button to a Web page 28 GETTING WEB-IFIED After studying Chapter 28, you should be able to: Create, close, and open a Web application View a Web page in a browser window and full screen view Add static text to a Web page Add

More information

Using Microsoft Word. Getting Started With Word. Exercise 1 Starting the Program

Using Microsoft Word. Getting Started With Word. Exercise 1 Starting the Program Using Microsoft Word Getting Started With Word Exercise 1 Starting the Program There are several ways to start a program in Microsoft Windows and they may include the following: Clicking an icon on the

More information

PEACHTREE COMPLETE 2008 AN INTRODUCTION TO PEACHTREE COMPLETE ACCOUNTING

PEACHTREE COMPLETE 2008 AN INTRODUCTION TO PEACHTREE COMPLETE ACCOUNTING PEACHTREE COMPLETE 2008 AN INTRODUCTION TO PEACHTREE COMPLETE ACCOUNTING Opening a Company Database To change the open company in Peachtree, click File on the main menu and select Open Company. If the

More information

Microsoft Visual Basic 2005 CHAPTER 6. Loop Structures

Microsoft Visual Basic 2005 CHAPTER 6. Loop Structures Microsoft Visual Basic 2005 CHAPTER 6 Loop Structures Objectives Add a MenuStrip object Use the InputBox function Display data using the ListBox object Understand the use of counters and accumulators Understand

More information

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button.

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button. Microsoft QUICK Word 2010 Source Getting Started The Word Window u v w x z Opening a Document 2. Select Open in the left pane. 3. In the Open dialog box, locate and select the file you want to open. 4.

More information

ITEC102 INFORMATION TECHNOLOGIES

ITEC102 INFORMATION TECHNOLOGIES ITEC102 INFORMATION TECHNOLOGIES LECTURE 6 Word Processor Part 1 EASTERN MEDITERRANEAN UNIVERSITY SCHOOL OF COMPUTING AND TECHNOLOGY Aim of the course To have information about, o o Word processors, Main

More information

Creating Web Applications Using ASP.NET 2.0

Creating Web Applications Using ASP.NET 2.0 12 Creating Web Applications Using ASP.NET 2.0 12 Chapter CXXXX 39147 Page 1 07/14/06--JHR After studying Chapter 12, you should be able to: Define the terms used when talking about the Web Create a Web

More information

Sema Foundation ICT Department. Lesson - 18

Sema Foundation ICT Department. Lesson - 18 Lesson - 18 1 Manipulating Windows We can work with several programs at a time in Windows. To make working with several programs at once very easy, we can change the size of the windows by: maximize minimize

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

Microsoft Office Excel 2003

Microsoft Office Excel 2003 Microsoft Office Excel 2003 Tutorial 1 Using Excel To Manage Data 1 Identify major components of the Excel window Excel is a computerized spreadsheet, which is an important business tool that helps you

More information

4. Some computers may also be customised so that a program such as Word can be started using a keyboard command.

4. Some computers may also be customised so that a program such as Word can be started using a keyboard command. Using Microsoft Word Starting the Program There are several ways to start a program in Microsoft Windows and they may include the following: 1. Clicking an icon on the desktop. 2. Clicking an icon in the

More information

Using Short Cut keys with Word 2003

Using Short Cut keys with Word 2003 Using Short Cut keys with Word 2003 Doc 5.137 Ver 1 John Matthews March 2005 Central Computing Services 1 Introduction Switching between the mouse and the keyboard slows down the speed at which you can

More information

Visual Basic Program Coding STEP 2

Visual Basic Program Coding STEP 2 Visual Basic Program Coding 129 STEP 2 Click the Start Debugging button on the Standard toolbar. The program is compiled and saved, and then is run on the computer. When the program runs, the Hotel Room

More information

CONTROL ROOM SOFTWARE

CONTROL ROOM SOFTWARE CONTROL ROOM SOFTWARE Starting QTWatch... Main screen... Control Monitor Screen... Action page... Site Map page... Standard Operations page... Handling calls on Actions... How to log a manual/remote call...

More information

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item Tips and Tricks Recorder Actions Library XPath Syntax Hotkeys Windows Hotkeys General Keyboard Shortcuts Windows Explorer Shortcuts Command Prompt Shortcuts Dialog Box Keyboard Shortcuts Excel Hotkeys

More information

Applications with Multiple Forms

Applications with Multiple Forms Applications with Multiple Forms APPENDIX D After studying Appendix D, you should be able to: Explain the difference between SDI, MDI, and TDI applications Create an SDI application that contains more

More information

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office.

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office. Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start Choose: programs Choose : Microsoft Office Select: Excel *The interface of Excel program - Menu bar. - Standard bar.

More information

1. Adapting Your Work Environment

1. Adapting Your Work Environment 19 1. Adapting Your Work Environment Windows 7 allows you the ability to adjust many of the settings according to your own preferences. In the bonus chapters of the book Windows 7 for Seniors (ISBN 978

More information

Windows 10 Essentials

Windows 10 Essentials Windows 10 Essentials User Interface START MENU Start typing to search for applications or files Once the start menu is open you can change its size by dragging a side Right-click on an application and

More information

In so many ways summary

In so many ways summary In so many ways summary Many of Word s functions can be activated in a variety of different ways. Often you can use the menu, a tool on the toolbar or a shortcut key to achieve the same result. Rather

More information

Here is a step-by-step guide to creating a custom toolbar with text

Here is a step-by-step guide to creating a custom toolbar with text How to Create a Vertical Toolbar with Text Buttons to Access Your Favorite Folders, Templates and Files 2007-2017 by Barry MacDonnell. All Rights Reserved. Visit http://wptoolbox.com. The following is

More information

Teamcenter 11.1 Systems Engineering and Requirements Management

Teamcenter 11.1 Systems Engineering and Requirements Management SIEMENS Teamcenter 11.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Project Administrator's Manual REQ00002 U REQ00002 U Project Administrator's Manual 3

More information

Introduction to Microsoft Word

Introduction to Microsoft Word Chapter Microsoft Word is a powerful word processing program that allows you to enter text, make changes to it, format it, record and print it. You can use it to produce professional business letters,

More information

Interim Standards New Directions Workbook One EASI Tool Excel Support Document Contents:

Interim Standards New Directions Workbook One EASI Tool Excel Support Document Contents: Interim Standards New Directions Workbook One EASI Tool Excel Support Document Contents: 1. EASI Tool Template.... 2 2. Accessing and Saving the Tool Template.... 2 3. Screen View... 3 4. Comments/Guidance

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Links to Activities ACTIVITY 1.1. Links to Activities Links to Activities

Links to Activities ACTIVITY 1.1. Links to Activities Links to Activities EXCEL Analyzing Data Using Excel Section 1 Skills Start Excel and identify features in the Excel window Enter labels and values Use the fill handle to enter a series Enter formulas Create a formula using

More information

You ll notice at the bottom of the file menu there is a list of recently opened files. You can click a file name in the list to re-open that file.

You ll notice at the bottom of the file menu there is a list of recently opened files. You can click a file name in the list to re-open that file. Using Microsoft Word A word processor is all about working with large amounts of text, so learning the basics of text editing is essential to being able to make the most of the program. The first thing

More information

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

MS Word Basic Word 2007 Concepts

MS Word Basic Word 2007 Concepts MS Word Basic Word 2007 Concepts BWD 1 BASIC MS WORD CONCEPTS This section contains some very basic MS Word information that will help you complete the assignments in this book. If you forget how to save,

More information

Your First Windows Form

Your First Windows Form Your First Windows Form From now on, we re going to be creating Windows Forms Applications, rather than Console Applications. Windows Forms Applications make use of something called a Form. The Form is

More information

Excel 2013 for Beginners

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

More information

Changing Button Images in Microsoft Office

Changing Button Images in Microsoft Office Changing Button Images in Microsoft Office Introduction This document deals with creating and modifying the button images used on Microsoft Office toolbars. Rarely is there a need to modify a toolbar button

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

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide MICROSOFT OFFICE Courseware: 3263 2 Exam: 77 727 EXCEL 2016 CORE Certification Guide Microsoft Office Specialist 2016 Series Microsoft Excel 2016 Core Certification Guide Lesson 1: Introducing Excel Lesson

More information

Lesson 09 Working with. SDI and MDI. MIT Rapid Application Development By. S. Sabraz Nawaz Lecturer in MIT

Lesson 09 Working with. SDI and MDI. MIT Rapid Application Development By. S. Sabraz Nawaz Lecturer in MIT Lesson 09 Working with SDI and MDI MIT 31043 Rapid Application Development By. S. Sabraz Nawaz Lecturer in MIT Single Document Interface (SDI) An SDI application that consists of more than one form can

More information

Microsoft Word and Basics of Word processing

Microsoft Word and Basics of Word processing Microsoft Word and Basics of Word Processing Unit 3: Microsoft Word and Basics of Word processing Introduction A word processor is a software package that turns your personal computer into a machine that

More information

Word 2010 Getting Started with Word. Introduction. Getting to know Word The Ribbon. Video: Exploring Your Word 2010 Environment

Word 2010 Getting Started with Word. Introduction. Getting to know Word The Ribbon. Video: Exploring Your Word 2010 Environment Word 2010 Getting Started with Word Introduction Word 2010 is a word processor that allows you to create various types of documents such as letters, papers, flyers, and faxes. In this lesson, you will

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

?s t 2 W ; g 0 } 9 m! * = 5 z A & # + 92 Guidebook

?s t 2 W ; g 0 } 9 m! * = 5 z A & # + 92 Guidebook ? s W g ;0 6 t 9} = 3 * 7 & A # z m @! 92 % 2 5 + Guidebook Contents Introduction................................................1 WordPerfect tutorials.........................................5 Quattro

More information

Enterprise Edge 2.0 Personal Call Manager User Guide

Enterprise Edge 2.0 Personal Call Manager User Guide Enterprise Edge 2.0 Personal Call Manager User Guide www.nortelnetworks.com 2000 Nortel Networks P0911958 Issue 01 Contents Enterprise Edge Personal Call Manager 9 Using a handsfree telephone with Enterprise

More information

QUICKBOOKS PRO 2008 AN INTRODUCTION TO QUICKBOOKS PRO

QUICKBOOKS PRO 2008 AN INTRODUCTION TO QUICKBOOKS PRO QUICKBOOKS PRO 2008 AN INTRODUCTION TO QUICKBOOKS PRO Opening a Company Database 1. To change the open company in QuickBooks, click File on the main menu and select Open or Restore Company. When the next

More information

Appendix J: Using Shortcut Keys and Shortcut Menus

Appendix J: Using Shortcut Keys and Shortcut Menus Appendix J: Using Shortcut Keys and Shortcut Menus Introduction This appendix covers shortcuts to many of the menu options, dialog boxes, and commands used in PC-DMIS. Using shortcuts will speed up your

More information

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Objectives Start Windows and view the desktop Use pointing devices Use the Start button Use the taskbar Work with windows 2 Objectives Use

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 Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password Microsoft Windows Operating System Starting Windows Windows automatically starts when you turn on your computer You might be asked to enter your username and password The Windows desktop uses a graphical

More information

Academic Word Processing with Word 2003

Academic Word Processing with Word 2003 Academic Word Processing with Word 2003 Doc 5.133 Ver 1 John Matthews May 2005 Central Computing Services Prerequisites This document assumes that you are familiar with the use of a computer keyboard and

More information

1. Adjusting Your Work Area

1. Adjusting Your Work Area 21 1. Adjusting Your Work Area You can customize the Windows Vista operating system to look and function exactly how you want. In the book Windows Vista for SENIORS you learned for example how to change

More information

Provides access to Worldspan Reservations Manager.

Provides access to Worldspan Reservations Manager. The Worldspan Go! SM Home Page Windows 95 Quick Reference The home page displays when you start your computer. This screen is continuously updated with new information. The figure below is intended to

More information

SECTION 4 USING QUERIES. What will I learn in this section?

SECTION 4 USING QUERIES. What will I learn in this section? SECTION 4 USING QUERIES What will I learn in this section? Select Queries Creating a Query Adding a Table to Query Adding Fields to Query Single Criteria Hiding column in a Query Adding Multiple Tables

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

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Getting Familiar with Microsoft Word 2010 for Windows

Getting Familiar with Microsoft Word 2010 for Windows Lesson 1: Getting Familiar with Microsoft Word 2010 for Windows Microsoft Word is a word processing software package. You can use it to type letters, reports, and other documents. This tutorial teaches

More information

Customizing DAZ Studio

Customizing DAZ Studio Customizing DAZ Studio This tutorial covers from the beginning customization options such as setting tabs to the more advanced options such as setting hot keys and altering the menu layout. Introduction:

More information

4 VISUAL FOXPRO - AN INTRODUCTION

4 VISUAL FOXPRO - AN INTRODUCTION Visual FoxPro - An Introduction:: 33 4 VISUAL FOXPRO - AN INTRODUCTION 4.1 INTRODUCTION Visual FoxPro is a Relational Database Management System (RDBMS), which allows you to work with several logically

More information

Full file at Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries

Full file at   Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries MULTIPLE CHOICE 1. To start a new line in a cell, press after each line, except for the last line, which is completed by clicking the

More information

Computer Basics. Hardware. This class is designed to cover the following basics:

Computer Basics. Hardware. This class is designed to cover the following basics: Computer Basics This class is designed to cover the following basics: computer hardware software computer s operating system different kinds of storage devices you can use to save files using a mouse what

More information

Keeping Track, Menus. CSC 330 Object-Oriented Programming 1

Keeping Track, Menus. CSC 330 Object-Oriented Programming 1 Keeping Track, Menus CSC 330 Object-Oriented Programming 1 Chapter Objectives Keeping Track Create menus and submenus for program control Display and use the Windows common dialog boxes Create context

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

More information

Les s on Objectives. Student Files Us ed

Les s on Objectives. Student Files Us ed Lesson 3 - Potpourri 31 Lesson 3 P otpourri Les s on Topics The Fill Command Wrapping Text View Options Edit Options Other Fill Handle Uses Les s on Objectives At the end of the lesson, you will be able

More information

Microsoft Office 2010 consists of five core programs: Word, Excel,

Microsoft Office 2010 consists of five core programs: Word, Excel, Chapter 1 Introducing Microsoft Office 2010 In This Chapter Starting an Office 2010 program Learning the Microsoft Office Backstage View Using the Quick Access toolbar Learning the Ribbon Customizing an

More information

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet 19 Text and Tabs Tabs (tab stops) help you to write a list, for example, for an order or invoice. Larger spaces should not be

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

Get to know Word 2007 I: Create your first document Quick Reference Card

Get to know Word 2007 I: Create your first document Quick Reference Card Get to know Word 2007 I: Create your first document Quick Reference Card Get Help To find out how to do something, click the Microsoft Office Word Help button in the upper-right corner of the window. Then

More information

Learn about PowerPoint: Create your first presentation

Learn about PowerPoint: Create your first presentation Learn about PowerPoint: Create your first presentation In this tutorial, you will create a simple presentation to learn the skills basic to working with all presentations. Step 1: Get started Open PowerPoint

More information

Read More: Keyboard Shortcuts for Moving around Excel Spreadsheets

Read More: Keyboard Shortcuts for Moving around Excel Spreadsheets You will do all your works in a workbook file. You can add as many worksheets as you need in a workbook file. Each worksheet appears in its own window. By default, Excel workbooks use a.xlsx file extension.

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

Lesson 1: Getting Started with

Lesson 1: Getting Started with Microsoft Office Specialist 2016 Series Microsoft Outlook 2016 Certification Guide Lesson 1: Getting Started with Email Lesson Objectives In this lesson, you will learn to identify Outlook program items,

More information

Moving and copying data

Moving and copying data L E S S O N 4 Moving and copying data Suggested teaching time 50-60 minutes Lesson objectives To be able to move and copy data, you will: a b c d e Insert rows and ranges by using shortcut menu choices.

More information

Lesson 09 Working with. SDI and MDI. MIT 31043: Rapid Application Development By: S. Sabraz Nawaz Senior Lecturer in MIT Dept. of MIT, FMC, SEUSL

Lesson 09 Working with. SDI and MDI. MIT 31043: Rapid Application Development By: S. Sabraz Nawaz Senior Lecturer in MIT Dept. of MIT, FMC, SEUSL Lesson 09 Working with SDI and MDI MIT 31043: Rapid Application Development By: S. Sabraz Nawaz Senior Lecturer in MIT Dept. of MIT, FMC, SEUSL Single Document Interface (SDI) An SDI application that consists

More information

Use the Windows Start button. Use a desktop shortcut

Use the Windows Start button. Use a desktop shortcut Lesson 1 1 Use the Windows Start button 2 3 Use a desktop shortcut Used Most Frequently Used Programs on left side of Start Menu #5 Fastest way for already created documents 4 5 Right-click a Word document

More information

Microsoft Word 2011: Basic Tutorial

Microsoft Word 2011: Basic Tutorial Microsoft Word 2011: Basic Tutorial 1. Create a new blank document In Word, you create and save content in a document. You can start with a blank document, an existing saved document, or a template. When

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

Computer Shortcut Keys

Computer Shortcut Keys Powered By Computer Shortcut Keys Let s kickstart the list with the most common shortcuts that you ll often use. F1 [Display Help] F2 [Rename the selected item] F3 [Search for a file or folder] F4 [Display

More information

Day : Date : Objects : Open MS Excel program. Subject : * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office

Day : Date : Objects : Open MS Excel program. Subject : * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office 1 2 Day : Date : Objects : Open MS Excel program. Subject : * Open Excel application. Select : start Choose: programs Choose : Microsoft Office Select: Excel * Close the Excel program Click on the Close

More information

R EIN V E N TIN G B U S I N E S S I L E M A. MARK5 Basic guide. - All rights reserved

R EIN V E N TIN G B U S I N E S S I L E M A. MARK5 Basic guide.   - All rights reserved R EIN V E N TIN G B U S I N E S S I L E M A MARK5 Basic guide 0.0 Welcome In this brief guide we will cover the basics of MARK5 such as starting up, understanding the MARK5 interface basics and sending

More information

Introduction. Getting to Know Word The Ribbon. Word 2010 Getting Started with Word. Video: Exploring Your Word 2010 Environment.

Introduction. Getting to Know Word The Ribbon. Word 2010 Getting Started with Word. Video: Exploring Your Word 2010 Environment. Word 2010 Getting Started with Word Introduction Page 1 Word 2010 is a word processor that allows you to create various types of documents such as letters, papers, flyers, faxes and more. In this lesson,

More information

Visual Studio.NET. Rex Jaeschke

Visual Studio.NET. Rex Jaeschke Visual Studio.NET Rex Jaeschke Copyright c 2002, 2005 Rex Jaeschke. All rights reserved. Edition: 2.0 (matches V2) Printing: August 6, 2005 All rights reserved. No part of this publication may be reproduced,

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 Excel

Introduction to Microsoft Excel Chapter A spreadsheet is a computer program that turns the computer into a very powerful calculator. Headings and comments can be entered along with detailed formulas. The spreadsheet screen is divided

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. An alternative to following these steps are to double click on the Microsoft Word Icon on the desktop.

Microsoft Word. An alternative to following these steps are to double click on the Microsoft Word Icon on the desktop. Microsoft Word To access this Lesson Plan on-line, open up the library website www.bellevillelibrary.com and go to the tab that reads Adults. Scroll down and click on FREE Computer Lessons. On this page

More information

Sage Getting Started Guide

Sage Getting Started Guide Sage 100 2016 Getting Started Guide This is a publication of Sage Software, Inc. Version 2016 Copyright 2015 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

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

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word "Qtr3"?

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word Qtr3? Choose The Correct Answer: 1) Study the highlighted cells in the image below and identify which of the following represents the correct cell address for these cells: a) The cell reference for the selected

More information

Using Microsoft Word. Text Editing

Using Microsoft Word. Text Editing Using Microsoft Word A word processor is all about working with large amounts of text, so learning the basics of text editing is essential to being able to make the most of the program. The first thing

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

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information

Using Microsoft Word. Getting Started With Word. Starting the Program

Using Microsoft Word. Getting Started With Word. Starting the Program Using Microsoft Word Starting the Program There are several ways to start a program in Microsoft Windows and they may include the following: 1. Clicking an icon on the desktop. 2. Clicking an icon in the

More information

Switch between open apps Close the active item, or exit the active app

Switch between open apps Close the active item, or exit the active app Ctrl + X Ctrl + C (or Ctrl + Insert) Ctrl + V (or Shift + Insert) Ctrl + Z Alt + Tab Alt + F4 L D F2 F3 F4 F5 F6 F10 Alt + F8 Alt + Esc Alt + underlined letter Alt + Enter Alt + Spacebar Alt + Left arrow

More information

Word 2007/10/13 1 Introduction

Word 2007/10/13 1 Introduction Objectives Word 2007/10/13 1 Introduction Understand the new Word 2007 Interface Navigate the Office button Learn about the Quick Access menu Navigate the Ribbon menu interface Understand the I-beam Learn

More information