Microsoft Visual Basic 2005 CHAPTER 5. Mobile Applications Using Decision Structures

Size: px
Start display at page:

Download "Microsoft Visual Basic 2005 CHAPTER 5. Mobile Applications Using Decision Structures"

Transcription

1 Microsoft Visual Basic 2005 CHAPTER 5 Mobile Applications Using Decision Structures

2 Objectives Write programs for devices other than a personal computer Understand the use of handheld technology Write handheld applications for a Personal Digital Assistant Use the Panel object Place RadioButton objects in applications Chapter 5: Mobile Applications Using Decision Structures 2

3 Objectives Display a message box Make decisions using If Then statements Make decisions using If Then Else statements Make decisions using nested If statements Chapter 5: Mobile Applications Using Decision Structures 3

4 Objectives Make decisions using logical operators Make decisions using Case statements Insert code snippets Test input to ensure a value is numeric Chapter 5: Mobile Applications Using Decision Structures 4

5 Chapter Project Chapter 5: Mobile Applications Using Decision Structures 5

6 Pervasive Devices Visual Studio has a built-in emulator that displays a working Pocket PC Pervasive devices have become important in many business venues Chapter 5: Mobile Applications Using Decision Structures 6

7 Create a Smart Device Application With Visual Studio 2005 open, click the New Project button on the Standard toolbar and then, if necessary, click the plus sign next to Smart Device in the Project types pane on the left side of the New Project dialog box Click Pocket PC 2003 under Smart Device in the Project types list. In the Templates pane, click Device Application Change the Name of the Smart Device application from DeviceApplication1 to WoodCabinetEstimate. Click the OK button Chapter 5: Mobile Applications Using Decision Structures 7

8 Create a Smart Device Application Chapter 5: Mobile Applications Using Decision Structures 8

9 Placing Objects on the PocketPC Form Object Many of the same objects used in a Windows application can be placed on the PocketPC Form object You cannot resize the Form object The PocketPC Form object can be named in the same manner as a Windows Form object using the (Name) property in the Properties window Change the Text property of the PocketPC Form object from Form1 to Estimate in the same manner used for the Windows Form object Chapter 5: Mobile Applications Using Decision Structures 9

10 Placing Objects on the PocketPC Form Object Chapter 5: Mobile Applications Using Decision Structures 10

11 Using the Panel Object If necessary, open the Device Containers category of the Toolbox by clicking the plus sign next to the category name. Drag the Panel.NET component in the Device Containers category of the Toolbox over the PocketPC Form object to the approximate location where you want to place the Panel object When the mouse pointer is in the correct location, release the left mouse button. Increase the size of the Panel object to the approximate size shown in Figure 5-13 by dragging the lower-right sizing handle With the Panel object selected, scroll in the Properties window to the (Name) property. Double-click in the right column of the (Name) property and then enter the name pnlwoodtype Chapter 5: Mobile Applications Using Decision Structures 11

12 Using the Panel Object Chapter 5: Mobile Applications Using Decision Structures 12

13 Adding the RadioButton Objects Drag and drop one RadioButton object from the Toolbox onto the PocketPC Form object inside the Panel object. Drag a second RadioButton object from the Toolbox onto the PocketPC Form object using blue snap lines to align and separate the RadioButton objects vertically Release the left mouse button to place the RadioButton object on the PocketPC Form object within the Panel object. Using the same technique, add a third RadioButton object Chapter 5: Mobile Applications Using Decision Structures 13

14 Adding the RadioButton Objects Name the RadioButton objects by selecting a RadioButton object, double-clicking in the right column of the (Name) property in the Properties window, and entering the name. The names for the radio buttons, from top to bottom, should be radpine, radoak, and radcherry Change the Text property for each RadioButton by double-clicking in the right column of the Text property and typing Pine for the first RadioButton, Oak for the second RadioButton and Cherry for the third RadioButton Chapter 5: Mobile Applications Using Decision Structures 14

15 Adding the RadioButton Objects Chapter 5: Mobile Applications Using Decision Structures 15

16 Windows Application Container Objects Chapter 5: Mobile Applications Using Decision Structures 16

17 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 17

18 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 18

19 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 19

20 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 20

21 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 21

22 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 22

23 Displaying a Message Box In the code editing window, inside the event handler you are coding, press CTRL+SPACEBAR. IntelliSense displays the allowable entries. Type mes to select MessageBox in the IntelliSense list Type a period (. ) to insert the dot operator. IntelliSense displays a list of the allowable entries. Type s to select Show in the IntelliSense list Type the following text: ( You have been disconnected from the Internet, ISP, Chapter 5: Mobile Applications Using Decision Structures 23

24 Displaying a Message Box Scroll to the right until there is enough visible room for the remaining entries. Type a space and then select the MessageBoxButtons.RetryCancel argument by pressing the DOWN ARROW key on the keyboard four times Type a comma. Then, to select the MessageBoxIcon.Warning argument, press the DOWN ARROW key nine times (or click the argument in the IntelliSense list) Type a right parenthesis and then press the ENTER key Chapter 5: Mobile Applications Using Decision Structures 24

25 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 25

26 Displaying a Message Box Chapter 5: Mobile Applications Using Decision Structures 26

27 Making Decisions with Conditional Statements: Using an If Then Statement A decision structure is one of the three fundamental control structures used in computer programming When a condition is tested in a Visual Basic program, the condition either is true or false Chapter 5: Mobile Applications Using Decision Structures 27

28 Relational Operators Chapter 5: Mobile Applications Using Decision Structures 28

29 Relational Operators With the insertion point located in the correct location within the code you are writing, type if on your keyboard and then press the SPACEBAR Press CTRL+SPACEBAR to invoke IntelliSense. Type inta to select the variable named intage in the IntelliSense list. Then, type >=21 as the condition to be tested. Press the ENTER key On the blank line, enter the statement that should be executed when the condition is true. To place the message, You are old enough to vote in the Text property of the lblvotingeligibility Label object, insert the code shown in Figure 5-41 on page 316. Remember to use IntelliSense to reference the lblvotingeligibility Label object Chapter 5: Mobile Applications Using Decision Structures 29

30 Relational Operators Chapter 5: Mobile Applications Using Decision Structures 30

31 Comparing Strings A string value comparison compares each character in two strings, starting with the first character in each string Chapter 5: Mobile Applications Using Decision Structures 31

32 Comparing Different Data Types Every type of data available in Visual Basic can be compared Different numeric types can be compared to each other A single string character can be compared to a Char data type Chapter 5: Mobile Applications Using Decision Structures 32

33 Using the If Then Else Statement Chapter 5: Mobile Applications Using Decision Structures 33

34 Using the If Then ElseIf Statement Chapter 5: Mobile Applications Using Decision Structures 34

35 Nested If Statements Chapter 5: Mobile Applications Using Decision Structures 35

36 Nested If Statements Chapter 5: Mobile Applications Using Decision Structures 36

37 Matching If, Else, and End If Entries If statements must be fully contained within the outer If statement Place the correct statements with the correct If and Else statements within the nested If statement This illustration shows incorrect logic Chapter 5: Mobile Applications Using Decision Structures 37

38 Testing the Status of a RadioButton Object in Code Chapter 5: Mobile Applications Using Decision Structures 38

39 Block-Level Scope Scope is defined by where the variable is declared within a program Within an event handler, an If Then Else statement is considered a block of code Variables can be declared within a block of code The variable can be referenced only within the block of code where it is declared Chapter 5: Mobile Applications Using Decision Structures 39

40 Using Logical Operators When more than one condition is included in an If...Then...Else statement, the conditions are called a compound condition Chapter 5: Mobile Applications Using Decision Structures 40

41 Using the And Logical Operator Chapter 5: Mobile Applications Using Decision Structures 41

42 Using the Or Logical Operator Chapter 5: Mobile Applications Using Decision Structures 42

43 Using the Not Logical Operator Chapter 5: Mobile Applications Using Decision Structures 43

44 Other Logical Operators Chapter 5: Mobile Applications Using Decision Structures 44

45 Order of Operations for Logical Operators Chapter 5: Mobile Applications Using Decision Structures 45

46 Select Case Statement In some programming applications, different operations can occur based upon the value in a single field Chapter 5: Mobile Applications Using Decision Structures 46

47 Select Case Statement Chapter 5: Mobile Applications Using Decision Structures 47

48 Select Case Test Expressions Chapter 5: Mobile Applications Using Decision Structures 48

49 Using Relational Operators in a Select Case Statement Chapter 5: Mobile Applications Using Decision Structures 49

50 Using Ranges in Select Case Statements Chapter 5: Mobile Applications Using Decision Structures 50

51 Selecting Which Decision Structure to Use You might be faced with determining if you should use the Select Case statement or the If...Then...ElseIf statement to solve a problem Generally, the Select Case statement is most useful when more than two or three values must be tested for a given variable The If...Then...ElseIf statement is more flexible More than one variable can be used in the comparison Compound conditions with the And, Or, and Not logical operators can be used Chapter 5: Mobile Applications Using Decision Structures 51

52 Code Snippets Right-click the line in the code editing window where you want to insert the snippet Click Insert Snippet on the shortcut menu Double-click Common Code Patterns, which is a folder that contains commonly used code such as the If...Then...Else statement Double-click the Conditionals and Loops folder because an If...Then...Else statement is a conditional statement Double-click the If...Else...End If Statement code snippet Chapter 5: Mobile Applications Using Decision Structures 52

53 Code Snippets Chapter 5: Mobile Applications Using Decision Structures 53

54 Validating Data Developers should anticipate that users will enter invalid data Developers must write code that will prevent the invalid data from being used in the program to produce invalid output Chapter 5: Mobile Applications Using Decision Structures 54

55 Testing Input to Determine If the Value Is Numeric The Visual Basic IsNumeric function can check the input value to determine if the value can be converted into a numeric value such as an Integer or Decimal data type Chapter 5: Mobile Applications Using Decision Structures 55

56 Checking for a Positive Number Chapter 5: Mobile Applications Using Decision Structures 56

57 Deploying the Application With Visual Studio open and the program you want to run loaded, click the Start Debugging button on the Standard toolbar If necessary, select Pocket PC 2003 SE Emulator in the Device list. Click the Deploy button After the Wood Cabinet Estimate application loads and executes on the emulator device, type 15 in the Linear Feet text box Using your mouse, click the Oak radio button, and then click the Calculate button Chapter 5: Mobile Applications Using Decision Structures 57

58 Deploying the Application Chapter 5: Mobile Applications Using Decision Structures 58

59 Using the Input Panel When you use the emulator, you can enter data directly from the keyboard The Pocket PC has the input panel to enter data into applications You can use a stylus to select the characters from the input panel. When you press the stylus on a character in the input panel, the character is entered into the focused object on the form Chapter 5: Mobile Applications Using Decision Structures 59

60 Closing the Emulator When you are finished with the application, close the emulator by clicking the Close button (X) in the upper-right corner of the Pocket PC emulator It is critical that you click the No button Chapter 5: Mobile Applications Using Decision Structures 60

61 Summary Write programs for devices other than a personal computer Understand the use of handheld technology Write handheld applications for a Personal Digital Assistant Use the Panel object Place RadioButton objects in applications Chapter 5: Mobile Applications Using Decision Structures 61

62 Summary Display a message box Make decisions using If Then statements Make decisions using If Then Else statements Make decisions using nested If statements Chapter 5: Mobile Applications Using Decision Structures 62

63 Summary Make decisions using logical operators Make decisions using Case statements Insert code snippets Test input to ensure a value is numeric Chapter 5: Mobile Applications Using Decision Structures 63

64 Microsoft Visual Basic 2005 CHAPTER 5 COMPLETE Mobile Applications Using Decision Structures

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

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

You will have mastered the material in this chapter when you can:

You will have mastered the material in this chapter when you can: CHAPTER 6 Loop Structures OBJECTIVES You will have mastered the material in this chapter when you can: Add a MenuStrip object Use the InputBox function Display data using the ListBox object Understand

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

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

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

More information

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

Power Point 2000 Level 1

Power Point 2000 Level 1 Introduction Opening PowerPoint, Using the AutoContent Wizard, Window Elements, Working in the Outline and Slide Window Panes, Understanding Different Views, and Saving the Presentation. Contents Introduction

More information

INTRODUCTION TO VISUAL BASIC 2010

INTRODUCTION TO VISUAL BASIC 2010 INTRODUCTION TO VISUAL BASIC 2010 Microsoft Visual Basic is a set of programming tools that allows you to create applications for the Windows operating system. With Visual Basic, even a beginner can create

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

INFORMATICS LABORATORY WORK #4

INFORMATICS LABORATORY WORK #4 KHARKIV NATIONAL UNIVERSITY OF RADIO ELECTRONICS INFORMATICS LABORATORY WORK #4 MAZE GAME CREATION Associate Professor A.S. Eremenko, Associate Professor A.V. Persikov Maze In this lab, you build a maze

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

Getting Started Manual. SmartList To Go

Getting Started Manual. SmartList To Go Getting Started Manual SmartList To Go Table of contents Installing SmartList To Go 3 Launching SmartList To Go on the handheld 4 SmartList To Go toolbar 4 Creating a SmartList 5 The Field Editor Screen

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

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

To complete this activity, you will need the following files:

To complete this activity, you will need the following files: CHAPTER 1 Windows XP More Skills 12 Move Data Between Windows You can open several application windows at the same time; they do not need to be files created by the same program. Having more than one window

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

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

Creating a Web Presentation

Creating a Web Presentation LESSON 9 Creating a Web Presentation 9.1 After completing this lesson, you will be able to: Create an agenda slide or home page. Create a hyperlink to a slide. Create a Web presentation with the AutoContent

More information

First Visual Basic Lab Paycheck-V1.0

First Visual Basic Lab Paycheck-V1.0 VISUAL BASIC LAB ASSIGNMENT #1 First Visual Basic Lab Paycheck-V1.0 Copyright 2013 Dan McElroy Paycheck-V1.0 The purpose of this lab assignment is to enter a Visual Basic project into Visual Studio and

More information

Microsoft Excel Level 2

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

More information

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

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

Microsoft Office 2010: Introductory Q&As Access Chapter 2

Microsoft Office 2010: Introductory Q&As Access Chapter 2 Microsoft Office 2010: Introductory Q&As Access Chapter 2 Is it necessary to close the Navigation Pane? (AC 78) No. It gives you more room for the query, however, so it is usually a good practice to hide

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

The Basics of PowerPoint

The Basics of PowerPoint MaryBeth Rajczewski The Basics of PowerPoint Microsoft PowerPoint is the premiere presentation software. It enables you to create professional presentations in a short amount of time. Presentations using

More information

Section 1 Creating Mail Merge Files

Section 1 Creating Mail Merge Files Course Topics: I. Creating Mail Merge Files II. Creating Mailing Labels III. Printing Selective Records IV. Using Mail Merge Toolbar V. Envelopes and labels on the fly Section 1 Creating Mail Merge Files

More information

6. Essential Spreadsheet Operations

6. Essential Spreadsheet Operations 6. Essential Spreadsheet Operations 6.1 Working with Worksheets When you open a new workbook in Excel, the workbook has a designated number of worksheets in it. You can specify how many sheets each new

More information

Exporting distribution lists from Thunderbird to Outlook

Exporting distribution lists from Thunderbird to Outlook Exporting distribution lists from Thunderbird to Outlook PLEASE NOTE: Do not export the lists under Distribution Lists in your Thunderbird Address Book as these will no longer be maintained on the new

More information

PowerPoint Basics. Objectives. PowerPoint Basics. Just what are we trying to do with this software anyway?

PowerPoint Basics. Objectives. PowerPoint Basics. Just what are we trying to do with this software anyway? PowerPoint Basics 1. Presentation basics 2. Creating your title slide 3. Adding new slides 4. Adding bulleted text 5. Changing slide layouts 6. Inserting clip art and images 7. Hyper linking to other slides,

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

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

To complete this project, you will need the following folder:

To complete this project, you will need the following folder: = CHAPTER 1 Windows 7 More Skills 12 Use Libraries to Organize Files A library is a collection of files and folders stored in different locations on your computer that can be viewed as a single folder.

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

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

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a List The following instructions cover how to create a list report in IBM Cognos Analytics. A list is a report type in Cognos that displays a series of data columns listing

More information

GUI Design and Event- Driven Programming

GUI Design and Event- Driven Programming 4349Book.fm Page 1 Friday, December 16, 2005 1:33 AM Part 1 GUI Design and Event- Driven Programming This Section: Chapter 1: Getting Started with Visual Basic 2005 Chapter 2: Visual Basic: The Language

More information

Using Common Features of Microsoft Office Explore Microsoft Office Start programs and switch between them. Tutorial 1

Using Common Features of Microsoft Office Explore Microsoft Office Start programs and switch between them. Tutorial 1 Using Common Features of Microsoft Office 2003 Tutorial 1 1 Explore Microsoft Office 2003 Microsoft Office 2003, or Office, is a collection of the most popular Microsoft programs. These programs share

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Introduction to Microsoft Excel 2016

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

More information

BasicScript 2.25 User s Guide. May 29, 1996

BasicScript 2.25 User s Guide. May 29, 1996 BasicScript 2.25 User s Guide May 29, 1996 Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

Microsoft Excel Chapter 3. Working with Large Worksheets, Charting, and What-If Analysis

Microsoft Excel Chapter 3. Working with Large Worksheets, Charting, and What-If Analysis Microsoft Excel 2013 Chapter 3 Working with Large Worksheets, Charting, and What-If Analysis Objectives Rotate text in a cell Create a series of month names Copy, paste, insert, and delete cells Format

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

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

MODIFYING CIRCULATION WINDOW DISPLAYS

MODIFYING CIRCULATION WINDOW DISPLAYS 5-58 Using M3 Circulation MODIFYING CIRCULATION WINDOW DISPLAYS Note: If M3 v1.6 was your first installation of M3, graphic cells appear by default in the Patron and Item panes for all modes. Tip: Create

More information

PowerPoint Essentials 1

PowerPoint Essentials 1 PowerPoint Essentials 1 LESSON SKILL MATRIX Skill Exam Objective Objective Number Working with an Existing Presentation Change views of a presentation. Insert text on a slide. 1.5.2 2.1.1 SOFTWARE ORIENTATION

More information

Office 365: . Accessing and Logging In. Mail

Office 365:  . Accessing and Logging In. Mail Office 365: Email This class will introduce you to Office 365 and cover the email components found in Outlook on the Web. For more information about the Microsoft Outlook desktop client, register for a

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

Skill Exam Objective Objective Number. Setting Page Layout Modify page setup

Skill Exam Objective Objective Number. Setting Page Layout Modify page setup Managing Text Flow 5 LESSON SKILL MATRIX Skill Exam Objective Objective Number Setting Page Layout Modify page setup. 1.3.1 Working with Breaks Insert page, section, or column breaks. Change page setup

More information

Visual Basic 2008 Anne Boehm

Visual Basic 2008 Anne Boehm TRAINING & REFERENCE murach s Visual Basic 2008 Anne Boehm (Chapter 3) Thanks for downloading this chapter from Murach s Visual Basic 2008. We hope it will show you how easy it is to learn from any Murach

More information

Beginning PowerPoint: 2010 A Presentation Software

Beginning PowerPoint: 2010 A Presentation Software Beginning PowerPoint: 2010 A Presentation Software Objective 1: Review Screen Layout PowerPoint 2010 offers a similar user interface as 2007. The top portion of the window has a new structure for PowerPoint

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

4. In the Change Chart Type dialog box, click the type of chart to which you want to change. 5. Click the chart style. 6. Click OK.

4. In the Change Chart Type dialog box, click the type of chart to which you want to change. 5. Click the chart style. 6. Click OK. PROCEDURES LESSON 21: BUILDING BASIC CHARTS Creating a Chart 1 Select the range of data you want to chart 2 Click the INSERT tab Charts Group 3 Click the desired chart category button 4 In the gallery,

More information

How to set up an Amazon Work Profile for Windows 8

How to set up an Amazon Work Profile for Windows 8 How to set up an Amazon Work Profile for Windows 8 Setting up a new profile for Windows 8 requires you to navigate some screens that may lead you to create the wrong type of account. By following this

More information

Premiere - Jazz Video Project Tutorial

Premiere - Jazz Video Project Tutorial -Open Premiere and set up the Premiere Project -At the bottom left of the Project bin change the view from icon view to list view -Import all audio and video clips to the Project Bin window -Right Click

More information

PowerPoint Essentials

PowerPoint Essentials Lesson 1 Page 1 PowerPoint Essentials Lesson Skill Matrix Skill Exam Objective Objective Working with an Existing Change views of a Insert text on a slide. 1.5.2 2.1.1 Software Orientation Normal View

More information

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations Part I Integrated Development Environment Chapter 1: A Quick Tour Chapter 2: The Solution Explorer, Toolbox, and Properties Chapter 3: Options and Customizations Chapter 4: Workspace Control Chapter 5:

More information

2 TUTORIAL. Overview. VisualDSP Getting Started Guide 2-1 for SHARC DSPs

2 TUTORIAL. Overview. VisualDSP Getting Started Guide 2-1 for SHARC DSPs 2 TUTORIAL This chapter contains the following topics. Overview on page 2-1 Exercise One: Building and Running a C Program on page 2-3 Exercise Two: Calling an Assembly Routine and Creating an LDF on page

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER? 1 A Quick Tour WHAT S IN THIS CHAPTER? Installing and getting started with Visual Studio 2012 Creating and running your fi rst application Debugging and deploying an application Ever since software has

More information

Lesson 12 Getting Started with Word Essentials

Lesson 12 Getting Started with Word Essentials Getting Started with Word Essentials Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Create a new document. Change Word settings. Enter text in a document. Show nonprinting

More information

Window Designer. Opening Screen: When you start Window Designer, you will see the Opening Screen. Here you will be choosing from 4 options:

Window Designer. Opening Screen: When you start Window Designer, you will see the Opening Screen. Here you will be choosing from 4 options: Window Designer Opening Screen: When you start Window Designer, you will see the Opening Screen. Here you will be choosing from 4 options: New Design: Use this option when no pre-built templates are available

More information

Microsoft Visio 2010

Microsoft Visio 2010 Microsoft Visio 2010 Bryton Burling Table of Contents Opening Microsoft Visio 2010... 2 Getting Started... 3 Creating a Conceptual Web Site Diagram... 3 Analyzing the Shapes Toolbar... 3 Adding a Home

More information

2.1 Logging on to FieldManager Software

2.1 Logging on to FieldManager Software 2 Getting Started The main window displays all statewide contracts. Please note that you have access to ALL contracts and functionality is based on permission level. These contracts are imported into FieldManager

More information

HOUR 4 Understanding Events

HOUR 4 Understanding Events HOUR 4 Understanding Events It s fairly easy to produce an attractive interface for an application using Visual Basic.NET s integrated design tools. You can create beautiful forms that have buttons to

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to people in certain situations while others have

More information

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal Chapter 9 9 Creating Pages with Frames You can divide the display area of a Web browser into multiple panes by creating frames.

More information

Microsoft Access 2003 Quick Tutorial

Microsoft Access 2003 Quick Tutorial 1 Starting Access: 1. If there is no Access shortcut on the desktop, select Start, then Programs, then Microsoft Office, and then Access. 2. When access is open select File and then click on Blank Database

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

Bold, Italic and Underline formatting.

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

More information

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

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

Microsoft Publisher 2010 Tecumseh District Library

Microsoft Publisher 2010 Tecumseh District Library 1 Microsoft Publisher 2010 Tecumseh District Library by Anne Keller, Teen Services Librarian 2 Microsoft Publisher 2010 Microsoft Publisher is a powerful desktop publishing program that can create posters,

More information

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

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

Simply Personnel Screen Designer

Simply Personnel Screen Designer Simply Personnel Screen Designer -Training Workbook- Screen Designer Page 1 Build 12.8 Introduction to Simply Personnel Screen Designer This document provides step-by-step guide for employee users to give

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

Scripting with CAMMaster and Visual Basic 2008

Scripting with CAMMaster and Visual Basic 2008 Introduction CAMMaster is a very high performance CAM software program. Most of the functions that you can perform manually can be automated by utilizing the methods and properties that are exposed by

More information

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar Microsoft Excel 2007 is a spreadsheet application in the Microsoft Office Suite. A spreadsheet is an accounting program for the computer. Spreadsheets are primarily used to work with numbers and text.

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

PowerPoint Launching PowerPointX

PowerPoint Launching PowerPointX PowerPoint 2004 Launching PowerPointX 1. Start PowerPoint by clicking on the PowerPoint icon in the dock or finding it in the hard drive in the Applications folder under Microsoft Office 2004. PowerPoint

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

Setting Accessibility Options in Windows 7

Setting Accessibility Options in Windows 7 Setting Accessibility Options in Windows 7 Windows features a number of different options to make it easier for people who are differently-abled to use a computer. Opening the Ease of Access Center The

More information

Links to Activities ACTIVITY 3.1. Links to Activities

Links to Activities ACTIVITY 3.1. Links to Activities EXCEL Using Functions, Setting Print Options, and Adding Visual Elements Section 3 0 1 2 Skills Create AVERAGE, formulas to perform statistical analysis Create TODAY, NOW, and DATE formulas Create PMT

More information

Quick Tips & Tricks. Important You must use SEMICOLONS ( ie; ) to separate address when sending mail to multiple users

Quick Tips & Tricks. Important You must use SEMICOLONS ( ie; ) to separate  address when sending mail to multiple users Quick Tips & Tricks Important You must use SEMICOLONS ( ie; ) to separate email address when sending mail to multiple users Customize Mail View Click, View, and then highlight Current View Click, Customize

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

M Introduction to Visual Basic.NET Programming with Microsoft.NET 5 Day Course

M Introduction to Visual Basic.NET Programming with Microsoft.NET 5 Day Course Module 1: Getting Started This module introduces Visual Basic.NET and explains how it fits into the.net platform. It explains how to use the programming tools in Microsoft Visual Studio.NET and provides

More information

VB.NET. Exercise 1: Creating Your First Application in Visual Basic.NET

VB.NET. Exercise 1: Creating Your First Application in Visual Basic.NET VB.NET Module 1: Getting Started This module introduces Visual Basic.NET and explains how it fits into the.net platform. It explains how to use the programming tools in Microsoft Visual Studio.NET and

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

Linear Control Systems LABORATORY

Linear Control Systems LABORATORY Islamic University Of Gaza Faculty of Engineering Electrical Engineering Department Linear Control Systems LABORATORY Prepared By: Eng. Adham Maher Abu Shamla Under Supervision: Dr. Basil Hamed Experiments

More information

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved.

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. Tabular Room Data User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without

More information

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen.

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen. Excel is a spreadsheet application that allows for the storing, organizing and manipulation of data that is entered into it. Excel has variety of built in tools that allow users to perform both simple

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

How to Spice Up Your Forms Using Crystal

How to Spice Up Your Forms Using Crystal How to Spice Up Your Forms Using Crystal WHAT CAN I DO? Add a logo Add background colors and/or change the font colors Qty Ordered Change the Font style and size Remove unwanted information o Remove the

More information

KEYBOARD SHORTCUTS AND HOT KEYS

KEYBOARD SHORTCUTS AND HOT KEYS KEYBOARD SHORTCUTS AND HOT KEYS Page 1 This document is devoted to using the keyboard instead of the mouse to perform tasks within applications. This list is by no means the "be all and end all". There

More information

Table of Contents. Chapter 2. Looking at the Work Area

Table of Contents. Chapter 2. Looking at the Work Area Table of Contents... 1 Opening a PDF file in the work area... 2 Working with Acrobat tools and toolbars... 4 Working with Acrobat task buttons... 13 Working with the navigation pane... 14 Review... 18

More information

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide PROGRAMMING WITH REFLECTION: VISUAL BASIC USER GUIDE WINDOWS XP WINDOWS 2000 WINDOWS SERVER 2003 WINDOWS 2000 SERVER WINDOWS TERMINAL SERVER CITRIX METAFRAME CITRIX METRAFRAME XP ENGLISH Copyright 1994-2006

More information

Correcting Grammar as You Type

Correcting Grammar as You Type PROCEDURES LESSON 11: CHECKING SPELLING AND GRAMMAR Selecting Spelling and Grammar Options 2 Click Options 3 In the Word Options dialog box, click Proofing 4 Check options as necessary under the When correcting

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

FrontPage. Directions & Reference

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

More information

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