Chapter 3 Application Lesson using Visual C Express Edition

Size: px
Start display at page:

Download "Chapter 3 Application Lesson using Visual C Express Edition"

Transcription

1 Chapter 3 Application Lesson using Visual C Express Edition To start Visual C++ 1. Click the Start button on the Windows taskbar to open the Start menu. 2. Point to All Programs, point to Microsoft Visual C Express Edition and then click Microsoft Visual C Express Edition. The Microsoft Visual C++.NET copyright screen appears momentarily, and then the Microsoft Development Environment window opens. 3. If the Start Page window is not open, click View on the menu bar then point to Other Windows and click Start Page in the submenu. In the Integrated Development Environment window shown above, the window to the left is the Solution Explorer window, the top-right window presently showing the Start page is the Editor window, and the tab visible in the window at the bottom is the Output window. The Solution Explorer window enables you to navigate through your program files and display their contents in the Editor window and to add new files to your program. You can select other window tabs to be displayed with the Solution Explorer window using the View menu. The Editor window is where you enter and modify source code and other components of you application.

2 In the bottom of the IDE there is another window with tabs that you can choose to display by using the View menu. The Code Definition window displays the definition of a symbol selected in the Editor wins. The Call Browser window enables you to search your code for function calls. The Output window displays messages that result from compiling and linking your program. This textbook uses console applications. A console application is a program that runs in a Command Prompt window. You communicate with the program through the keyboard and screen. This allows you to concentrate on learning the C++ language before moving on to the complexities of graphical interfaces. Creating a new project When you create a project, a new solution is created automatically unless you elect to add the project to an existing solution. 1. Click File on the menu bar, point to the New command and then click Project. Or press CTRL+Shift+N or you can also click Project adjacent to Create: in the Recent Projects pane The New Project window displays.

3 Make sure that Win32 is selected in the left pane, and that Win32 Console Application is selected in the right pane. 2. In the Name: text box, enter Ch3Lab2 Browse to the location where you want to save your projects. 3. Click the OK button to display the Win32 Application Wizard dialog box.

4 In the Application Wizard you can customize the settings. Click Application Settings on the left to display the Application Settings page of the wizard. On this page you can choose options that you want to apply to the project.

5 Click the Empty project option. When you click Finish, the project will automatically open in Visual C

6 Visual C++ automatically creates the solution folder if it does not exist. By default the folder has the same name as the project, and contains the project folder and three files: A file that has.sln (which stands for solution ) as its filename extension, and records information about the projects in the solution. A file that has.suo (solution user options) as its filename extension, and is used to record the user options for the solution (a hidden file.) A file that has.ncb for the Intellisense data used for autocomplete features. To Add a C++ source file to the project Right-click the project in the solution explorer pane, then point to Add and click on New Item from the context menu. The Add New Item dialog box displays. Click Code in the Categories: pane Click C++ File (.cpp) in the Templates: pane Enter Ch3Lab2 in the Name text box Click Add to add the source file to the project.

7 When you click the Add button, the new file is added to the project and is displayed in the Editor window. The file is empty so nothing is displayed.

8 Begin entering the code that is shown on page 107 in the Editor window. You ll notice that the editor displays the comments, keywords (include and using), and symbols (#) in a different color from the rest of the code, to help you quickly identify the various elements in the code. Also notice that the editor lines up matching sets of curly braces and indents the code contained in the code block. An asterisk in the tab indicates that the source file contains changes that have not been saved. Saving a Solution Click the Save All button on the Standard toolbar, or click File on the menu bar, and then click Save All. The Save button on the Standard toolbar saves only the changes made to the selected item in the Solution Explorer. To save the solution, select the solution s name in the Solution Explorer window first.

9 Closing the Current Solution Click File on the menu bar and then click Close Solution. When you close a solution, all projects and files contained in the solution are closed. You will be prompted to save any unsaved changes. Opening an Existing Solution Click File on the menu bar, then point to the Open command, and then click on the Project/Solution command. The Open Project dialog box is displayed. Navigate to and open the solution folder. Select the Solution File (.sln file extension). Click Open button Note: you can also type Ctrl+Shift+O to display the Open Project dialog box. Practice saving, closing and opening the solution you just created. Then add the remaining program code shown on page 110. Saving, Building, and Executing a C++ Program 1. Click the Save All button on the Standard toolbar. 2. Click Build on the menu bar, then click Build Solution The message Build: 1 succeeded, 0 failed, 0 skipped appears in the Output window at the bottom of the IDE. This message indicates that the program was built (compiled and linked) successfully. Other messages are also displayed in the Output window while the program is being built. It is a good practice to view those messages to be sure that the program generated not warnings.

10 3. Scroll up the Output window to view the other messages.

11 4. Click Debug on the menu bar, then click Start Without Debugging to run the program. Note: Be sure to click Start Without Debugging on the Debug menu rather than Start. If you use Start, the Command Prompt window will not display the Press any key to continue message. Instead, the window will close immediately after displaying the program output.

12 5. Type 250 as the current weekly pay, then press Enter Type.03 as the raise rate, then press Enter The new weekly pay (257.5) appears on the screen along with the Press any key to continue message. Visual C++.NET editor automatically displays the Press any key to continue message on the screen when your program ends.

13 6. Press Enter to close the Command Prompt window, and then close the Output window by clicking the Close button on its title bar. Locating and Correcting an Error in a Program It is extremely easy to make a typing error when entering a C++ program, thereby producing a syntax error in the program. You will now introduce an error into the program to see how errors are reported, found and corrected. 1. Delete the semicolon that appears at the end of the double currentpay = 0.0; statement in the program. 2. Click the Save All button on the Standard toolbar. 3. Click Build on the menu bar, then click Build Solution. The Output pane at the bottom of the IDE window includes the error message. 4. Double-click the error message in the Output pane and the editor displays an arrow at the location where the error was encountered in the program. To get documentation on an error, click the line in the Output pane that contains the error number and then press the F1 key. 5. Type the semicolon at the end of the double currentpay = 0.0 statement. Save and build the program and then test it to see that it is working correctly.

14 6. Scroll up the Output window to view all the messages generated during the build process. Check for warning messages. Printing a C++ program To print the current active window, then close the program s solution and exit Visual C++.NET 1. Click File on the menu bar, then click Print. When the Print dialog box appears, click the OK button 2. Click File on the menu bar, then click Close Solution to close the current solution. This removes the solution from the computer s internal memory. You now can open either a new or an existing solution. 3. Click File on the menu bar, then click Exit to exit Visual C++.NET Making a Backup Copy of a C++ Solution 1. Navigate to the Solution folder, then delete the.ncb bile 2. Open the Project folder and delete the Debug folder 3. Navigate to the folder that contains the Solution folder. 4. Right-click the solution folder. Point to Send To on the context menu Activity for Lab3.3 Copying C++ source code contained in Ch3Lab2.cpp file to a new solution 1. Create a blank solution named Ch3Lab3 Solution and save it where you are saving you course work. 2. Add an empty C++ Win32 Console Project to the solution; name the project Ch3Lab3 Project

15 3. Add a new C++ source file to the project. Name the source file Ch3Lab3. 4. Click File on the menu bar, point to Open, and then click File. The Open File dialog box opens. 5. Open the Ch3Lab2 project folder; then click Ch3Lab2.cpp in the list of filenames, then click the Open button to open the Ch3Lab2.cpp file. 6. Click Edit on the menu bar, then click Select All to select all of the source code statements in the Ch3Lab2.cpp window.

16 7. Click Edit, then click Copy to copy the selected source code to the clipboard. 8. Close the Ch3Lab2.cpp window by clicking the Close button on its title bar. 9. Click the Ch3Lab3.cpp tab. Click Edit, then click Paste to paste the Ch3Lab2.cpp code in the Ch3Lab3.cpp window. 10. Change the filename in the first program comment to Ch3Lab3.cpp. If necessary, change the date in the second comment. Now remove the processing item (raise) from the program. 1. Make the appropriate modifications to the program. 2. Save and then build the solution. If necessary, correct any syntax errors, then save and build the solution again. 3. Execute the program. Test the program using your own sample data, then close the Command Prompt window. 4. When the program is working correctly, close the Output window, then use the File menu to close the solution.

Creating a Simple Visual C++ Program

Creating a Simple Visual C++ Program CPS 150 Lab 1 Name Logging in: Creating a Simple Visual C++ Program 1. Once you have signed for a CPS computer account, use the login ID and the password password (lower case) to log in to the system.

More information

Introduction to the use of the environment of Microsoft Visual Studio 2008

Introduction to the use of the environment of Microsoft Visual Studio 2008 Steps to work with Visual Studio 2008 1) Start Visual Studio 2008. To do this you need to: a) Activate the Start menu by clicking the Start button at the lower-left corner of your screen. b) Set the mouse

More information

Visual Studio 2008 Express Editions

Visual Studio 2008 Express Editions Visual Studio 2008 Express Editions Visual Studio 2008 Installation Instructions Burning a Visual Studio 2008 Express Editions DVD Download (http://www.microsoft.com/express/download/) the Visual Studio

More information

Presentations and PowerPoint

Presentations and PowerPoint V-1.1 PART V Presentations and PowerPoint V-1.2 Computer Fundamentals V-1.3 LESSON 1 Creating a Presentation After completing this lesson, you will be able to: Start Microsoft PowerPoint. Explore the PowerPoint

More information

Appendix M: Introduction to Microsoft Visual C++ 2010 Express Edition

Appendix M: Introduction to Microsoft Visual C++ 2010 Express Edition Appendix M: Introduction to Microsoft Visual C++ 2010 Express Edition This book may be ordered from Addison-Wesley in a value pack that includes Microsoft Visual C++ 2010 Express Edition. Visual C++ 2010

More information

Microsoft Visual Studio 2010 Instructions For C Programs

Microsoft Visual Studio 2010 Instructions For C Programs Microsoft Visual Studio 2010 Instructions For C Programs Creating a NEW C Project After you open Visual Studio 2010, 1. Select File > New > Project from the main menu. This will open the New Project dialog

More information

Appendix K Introduction to Microsoft Visual C++ 6.0

Appendix K Introduction to Microsoft Visual C++ 6.0 Appendix K Introduction to Microsoft Visual C++ 6.0 This appendix serves as a quick reference for performing the following operations using the Microsoft Visual C++ integrated development environment (IDE):

More information

3 IDE (Integrated Development Environment)

3 IDE (Integrated Development Environment) Visual C++ 6.0 Guide Part I 1 Introduction Microsoft Visual C++ is a software application used to write other applications in C++/C. It is a member of the Microsoft Visual Studio development tools suite,

More information

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0 T E C H N I C A L N O T E Autonomy Connected Backup Version 8.8 PC Agent Quick Start Revision 0 Use this document as a quick reference for common Connected Backup PC Agent tasks. If the Agent is not on

More information

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros.

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. Record a macro 1. On the Developer tab, in the Code group, click Record Macro. 2. In

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

More information

Install the Production Treasury Root Certificate (Vista / Win 7)

Install the Production Treasury Root Certificate (Vista / Win 7) Install the Production Treasury Root Certificate (Vista / Win 7) The Production Treasury Root Certificate should be maintained on your local workstations to use OTCnet Check Capture and Deposit Reporting.

More information

Importing Contacts to Outlook

Importing Contacts to Outlook Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

More information

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3 Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

Lab 2 - CMPS 1043, Computer Science I Introduction to File Input/Output (I/O) Projects and Solutions (C++)

Lab 2 - CMPS 1043, Computer Science I Introduction to File Input/Output (I/O) Projects and Solutions (C++) Lab 2 - CMPS 1043, Computer Science I Introduction to File Input/Output (I/O) Projects and Solutions (C++) (Revised from http://msdn.microsoft.com/en-us/library/bb384842.aspx) * Keep this information to

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Behavioral Health System

Behavioral Health System RESOURCE AND PATIENT MANAGEMENT SYSTEM Behavioral Health System (AMH) Version 4.0 Patch 6 Office of Information Technology Division of Information Technology Table of Contents 1.0 Objective #1: Introduction

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc.

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc. Email Basics Add CC or BCC You can display the Bcc box in all new messages that you compose. In a new message, do one of the following: 1. If Microsoft Word is your e-mail editor a. Click the arrow to

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

What is a Mail Merge?

What is a Mail Merge? NDUS Training and Documentation What is a Mail Merge? A mail merge is generally used to personalize form letters, to produce mailing labels and for mass mailings. A mail merge can be very helpful if you

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

OUTLOOK 2010 TIPS TABLE OF CONTENTS 1. SEND A BLIND CARBON COPY MARQUETTE UNIVERSITY IT SERVICES

OUTLOOK 2010 TIPS TABLE OF CONTENTS 1. SEND A BLIND CARBON COPY MARQUETTE UNIVERSITY IT SERVICES OUTLOOK 2010 TIPS TABLE OF CONTENTS 1.Send a Blind Carbon Copy... 1 2. Change the view of the Outlook window... 2 3. Use Out of Office Assistant... 2 4. Create Rules... 4 5. Use Autocomplete... 5 6. Request

More information

Browsing and working with your files and folder is easy with Windows 7 s new look Windows Explorer.

Browsing and working with your files and folder is easy with Windows 7 s new look Windows Explorer. Getting Started with Windows 7 In Windows 7, the desktop has been given an overhaul and makeover to introduce a clean new look. While the basic functionality remains the same, there are a few new navigation

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Outlook 2010 Essentials

Outlook 2010 Essentials Outlook 2010 Essentials Training Manual SD35 Langley Page 1 TABLE OF CONTENTS Module One: Opening and Logging in to Outlook...1 Opening Outlook... 1 Understanding the Interface... 2 Using Backstage View...

More information

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013)

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) This guide was created to allow agencies to set up the e-data Tech Support project s Microsoft Access template. The steps below have been

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

More information

TAMUS Terminal Server Setup BPP SQL/Alva

TAMUS Terminal Server Setup BPP SQL/Alva We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here

More information

IT Quick Reference Guides Using Windows 7

IT Quick Reference Guides Using Windows 7 IT Quick Reference Guides Using Windows 7 Windows Guides This sheet covers many of the basic commands for using the Windows 7 operating system. WELCOME TO WINDOWS 7 After you log into your machine, the

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint This document provides instructions for using slide masters in Microsoft PowerPoint. Slide masters allow you to make a change just

More information

10.3.1.6 Lab - Data Backup and Recovery in Windows XP

10.3.1.6 Lab - Data Backup and Recovery in Windows XP 5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

Instructions for Creating an Outlook E-mail Distribution List from an Excel File

Instructions for Creating an Outlook E-mail Distribution List from an Excel File Instructions for Creating an Outlook E-mail Distribution List from an Excel File 1.0 Importing Excel Data to an Outlook Distribution List 1.1 Create an Outlook Personal Folders File (.pst) Notes: 1) If

More information

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

To successfully initialize Microsoft Outlook (Outlook) the first time, email settings need to be verified.

To successfully initialize Microsoft Outlook (Outlook) the first time, email settings need to be verified. TO: UAN CLIENTS FROM: UAN STAFF DATE: OCTOBER 8, 2008 SUBJECT: Steps for Initial Setup of Microsoft Outlook To successfully initialize Microsoft Outlook (Outlook) the first time, email settings need to

More information

Microsoft PowerPoint 2011

Microsoft PowerPoint 2011 Microsoft PowerPoint 2011 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Adding an Image to a Slide... 4 Downloading Images

More information

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

Pdf - print version. Lab Objectives: When you are finished with this lab you should be able to:

Pdf - print version. Lab Objectives: When you are finished with this lab you should be able to: 1 of 5 Pdf - print version LAB EXERCISE 2 File Management in Windows Summary: This lab is a continuation of the concepts and techniques introduced in Lab1, which introduced you to the Windows interface

More information

Making a Web Page with Microsoft Publisher 2003

Making a Web Page with Microsoft Publisher 2003 Making a Web Page with Microsoft Publisher 2003 The first thing to consider when making a Web page or a Web site is the architecture of the site. How many pages will you have and how will they link to

More information

Lookout Software, LLC. All rights reserved.

Lookout Software, LLC. All rights reserved. USER S GUIDE Table of Contents Introduction... 3 System Requirements for Running ResponseTemplates... 3 Installing ResponseTemplates for Microsoft Outlook... 4 Getting Started - ResponseTemplates Basics...

More information

Wavecrest Certificate

Wavecrest Certificate Wavecrest InstallationGuide Wavecrest Certificate www.wavecrest.net Copyright Copyright 1996-2015, Wavecrest Computing, Inc. All rights reserved. Use of this product and this manual is subject to license.

More information

Context-sensitive Help Guide

Context-sensitive Help Guide MadCap Software Context-sensitive Help Guide Flare 11 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Word basics Word is a powerful word processing and layout application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features that

More information

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live

More information

1 Introduction. 2 Project Browser. 3 FlowStone Editor

1 Introduction. 2 Project Browser. 3 FlowStone Editor USER GUIDE C O N T E N T S CHAPTER 1 1 Introduction 3 OVERVIEW... 4 ABOUT THIS GUIDE...4 CHAPTER 2 2 Project Browser 5 OVERVIEW... 6 NAVIGATOR... 6 TOOLBAR...7 PROJECT LIST... 7 PROJECT ACTIONS... 9 OPENING

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 1 Creating a Database Microsoft Office 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and

More information

16.4.3 Optional Lab: Data Backup and Recovery in Windows 7

16.4.3 Optional Lab: Data Backup and Recovery in Windows 7 16.4.3 Optional Lab: Data Backup and Recovery in Windows 7 Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

MICROSOFT OFFICE OUTLOOK 2007 - LEVEL 1

MICROSOFT OFFICE OUTLOOK 2007 - LEVEL 1 MICROSOFT OFFICE 2007 MICROSOFT OFFICE OUTLOOK 2007 - LEVEL 1 Exploring Outlook Getting Help Sending and Receiving Messages Using Outlook Messaging Features Working with Components and Office Organizing

More information

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

This Skill Builder demonstrates how to define and place sketched symbols in drawings.

This Skill Builder demonstrates how to define and place sketched symbols in drawings. Sketched Symbols This Skill Builder demonstrates how to define and place sketched symbols in drawings. A sketched symbol is a user-defined symbol. You create sketched symbols in the sketch environment

More information

Outlook E-Mail. Step 1: Open and Configure Outlook

Outlook E-Mail. Step 1: Open and Configure Outlook Outlook E-Mail Step 1: Open and Configure Outlook 1. Click the Microsoft Button in the lower left task bar 2. Select All Programs 3. Select Microsoft Office 4. Select Microsoft Outlook 5. Follow the Start

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

BCSD WebMail Documentation

BCSD WebMail Documentation BCSD WebMail Documentation Outlook Web Access is available to all BCSD account holders! Outlook Web Access provides Webbased access to your e-mail, your calendar, your contacts, and the global address

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

Outlook 2010 Essentials Power Point Slides Corporate Training Materials

Outlook 2010 Essentials Power Point Slides Corporate Training Materials Evaluation Copy Only Not For Training Outlook 2010 Essentials Power Point Slides Corporate Training Materials Module One: Getting Started Welcome to the Microsoft Outlook2010 Essentials workshop. Outlook

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES LESSON 13 Managing Devices OBJECTIVES After completing this lesson, you will be able to: 1. Open System Properties. 2. Use Device Manager. 3. Understand hardware profiles. 4. Set performance options. Estimated

More information

Outlook Managing Your Items

Outlook Managing Your Items Course Description Managing your items is essential if you want Outlook to run as efficiently and effectively as possible. As with any filing system the longer you put off doing anything the larger the

More information

Lesson 7: Maintenance

Lesson 7: Maintenance Lesson 7: Maintenance This lesson introduces you to processes that will help you with the overall maintenance of Outlook 2007. The processes outlined in this section are: Mailbox Cleanup: Helps you focus

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Overview... 2 How to Add New Documents... 3 Adding a Note / SMS or Phone Message... 3 Adding a New Letter... 4. How to Create Letter Templates...

Overview... 2 How to Add New Documents... 3 Adding a Note / SMS or Phone Message... 3 Adding a New Letter... 4. How to Create Letter Templates... THE DOCUMENT MANAGER Chapter 14 THE DOCUMENT MANAGER CONTENTS Overview... 2 How to Add New Documents... 3 Adding a Note / SMS or Phone Message... 3 Adding a New Letter... 4 How to Create Letter Templates...

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Mail Merge (Microsoft Office 2010)

Mail Merge (Microsoft Office 2010) Mail Merge (Microsoft Office 2010) Microsoft Word s 2010 mail merge feature allows users to create one document, such as a customer appreciation letter, promotional letter, or an employee appreciation

More information

Microsoft FrontPage 2003

Microsoft FrontPage 2003 Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State

More information

Microsoft Project 2007 Level 2: Working with Resources and Managing a Project

Microsoft Project 2007 Level 2: Working with Resources and Managing a Project Microsoft Project 2007 Level 2: Working with Resources and Managing a Project By Robin Peers Robin Peers, 2008 ABOUT THIS CLASS In Microsoft Project 2007 Level 1: Creating Project Tasks, the focus was

More information

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7 Microsoft Word: Advanced Features for Publication, Collaboration, and Instruction For your MAC (Word 2011) Presented by: Karen Gray (kagray@vt.edu) Word Help: http://mac2.microsoft.com/help/office/14/en-

More information

Getting Started Guide. Chapter 14 Customizing LibreOffice

Getting Started Guide. Chapter 14 Customizing LibreOffice Getting Started Guide Chapter 14 Customizing LibreOffice Copyright This document is Copyright 2010 2012 by its contributors as listed below. You may distribute it and/or modify it under the terms of either

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Outlook Web App. in Office 365. The Outlook Window. Signing In. (Outlook Exchange Faculty & Staff) Getting Started

Outlook Web App. in Office 365. The Outlook Window. Signing In. (Outlook Exchange Faculty & Staff) Getting Started Outlook Web App in Office 365 (Outlook Exchange Faculty & Staff) Getting Started The Outlook Window Navigation Bar Settings Navigation Pane View Pane Reading Pane Navigation Bar switch between Outlook,

More information

OUTLOOK WEB APP (OWA): MAIL

OUTLOOK WEB APP (OWA): MAIL Office 365 Navigation Pane: Navigating in Office 365 Click the App Launcher and then choose the application (i.e. Outlook, Calendar, People, etc.). To modify your personal account settings, click the Logon

More information

WINDOWS 7 EXPLORE INTERNET EXPLORER 8

WINDOWS 7 EXPLORE INTERNET EXPLORER 8 WINDOWS 7 EXPLORE INTERNET EXPLORER 8 Windows 7 Explore Internet Explorer 8 Last Edited: 2012-07-10 1 Explore changes in the UI... 3 Enhance with built-in Search engine... 3 Manage and Organize IE with

More information

OUTLOOK 2007 2010 TIPS FOR BEGINNERS

OUTLOOK 2007 2010 TIPS FOR BEGINNERS OUTLOOK 2007 2010 TIPS FOR BEGINNERS GINI COURTER, PARTNER, TRIAD CONSULTING In this session you ll learn how to manage your calendar, email, and tasks (basically, your work life) using Microsoft Outlook.

More information

10.3.1.4 Lab - Data Backup and Recovery in Windows 7

10.3.1.4 Lab - Data Backup and Recovery in Windows 7 5.0 10.3.1.4 Lab - Data Backup and Recovery in Windows 7 Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

Microsoft Office PowerPoint 2003. Identify components of the PowerPoint window. Tutorial 1 Creating a Presentation

Microsoft Office PowerPoint 2003. Identify components of the PowerPoint window. Tutorial 1 Creating a Presentation Microsoft Office PowerPoint 2003 Tutorial 1 Creating a Presentation 1 Identify components of the PowerPoint window You will recognize some of the features of the PowerPoint window that are common to Windows

More information

Managing Mailbox Space and Personal Folders

Managing Mailbox Space and Personal Folders Managing Mailbox space and Using Personal Folders Based on documentation developed at the University of Iowa Revised for Iowa State University Extension August, 2005 ISU 100 EIT Bldg Iowa State University

More information

Fairfield University Using Xythos for File Sharing

Fairfield University Using Xythos for File Sharing Fairfield University Using Xythos for File Sharing Version 7.0 Table of Contents I: Manage your Department Folder...2 Your Department Folder... 2 II: Sharing Folders and Files Inside of Fairfield U...3

More information

Basic File Management & Navigation

Basic File Management & Navigation Basic File Management & Navigation Windows Explorer 1. Open Windows Explorer. (From the "Start-Programs" menu, or "Quick Launch" shortcut, or keyboard shortcut: "Microsoft flag symbol - E") 2. Within "Explorer",

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

The LSUHSC N.O. Email Archive

The LSUHSC N.O. Email Archive The LSUHSC N.O. Email Archive Introduction The LSUHSC N.O. email archive permanently retains a copy of all email items sent and received by LSUHSC N.O. Academic email users. Email items will be accessible

More information

Getting Started with Vision 6

Getting Started with Vision 6 Getting Started with Vision 6 Version 6.9 Notice Copyright 1981-2009 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop

More information

Microsoft PowerPoint 2008

Microsoft PowerPoint 2008 Microsoft PowerPoint 2008 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Slide Layouts... 3 Adding an Image to a Slide...

More information

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame...

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame... Using Microsoft Office 2003 Introduction to FrontPage Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Fall 2005 Contents Launching FrontPage... 3 Working with

More information

Outlook 2007: Managing your mailbox

Outlook 2007: Managing your mailbox Outlook 2007: Managing your mailbox Find its size and trim it down Use Mailbox Cleanup On the Tools menu, click Mailbox Cleanup. You can do any of the following from this one location: View the size of

More information

Producing Standards Based Content with ToolBook

Producing Standards Based Content with ToolBook Producing Standards Based Content with ToolBook Contents Using ToolBook to Create Standards Based Content... 3 Installing ToolBook... 3 Creating a New ToolBook Book... 3 Modifying an Existing Question...

More information

In-Class Lab Assignment

In-Class Lab Assignment In-Class Lab Assignment Prepared by Ms. Delores J. Reaves Please bring copy to class!!!!! Introduction to Windows (the Operating System) Understanding File Management F ile management is the process of

More information

Training Manual Version 1.0

Training Manual Version 1.0 State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a

More information

MICROSOFT EXCEL 2011 MANAGE WORKBOOKS

MICROSOFT EXCEL 2011 MANAGE WORKBOOKS MICROSOFT EXCEL 2011 MANAGE WORKBOOKS Last Edited: 2012-07-10 1 Open, create, and save Workbooks... 3 Open an existing Excel Workbook... 3 Create a new Workbook... 6 Save a Workbook... 6 Set workbook properties...

More information