Using the Turbo C++ Integrated Development Environment (IDE)

Size: px
Start display at page:

Download "Using the Turbo C++ Integrated Development Environment (IDE)"

Transcription

1 Chapter 1 Computer Science w/ C++ Name: Guided Lab (v. 2.0) Mr. Ferwerda Using the Turbo C++ Integrated Development Environment (IDE) A. Entering Borland Turbo C++ 3.0: two methods: 1) From Windows, click on the Turbo C++ shortcut icon. 2) If the shortcut doesn t exist, from the Start Menu, choose the Run option and type: C:>\tc\bin\tc Once started, the Turbo C++ Integrated Environment opens up the desktop, and may open a new (or whatever was last used) program into the edit window, and/or open the message window in which compiler and error messages appear. It also contains a menu bar on the top of the screen, scroll bars on the right and bottom, and a status line at the bottom that shows keyboard shortcuts or other information about the menus. B. The Turbo C++ Integrated Debugging Environment (IDE) Window Close Box Menu Bar Edit Window Status Line Message Window Scroll Bars

2 Comp. Sci. w/ C++: Ch. 1 Turbo C++ IDE Guided Lab (v.2.0) page 2 C. Using the Turbo C++ Main Menu 1. To access the main menus from the menu bar (one of three methods): Alt (hold down) + first letter of menu F10 + first letter of menu mouse (put cursor on menu title and click the left mouse button) 2. Write down the options listed under each of the following menus: File Edit Run Compile 3. The Status Line Open the File Menu and look at the choices. What does the status line say when each of the following options are highlighted: New Open Save Save As Print DOS Shell D. The Edit Window 1. Use the New option under the File Menu to create a new program edit window. a. What is the name of the new program? b. Create another new program. What is its name? c. What do you notice about the way the edit windows of each of these programs are arranged? d. To close the edit windows, click the mouse on the green square in the upper left corner of each program's edit window. Close all the programs now. You should be left with a blank desktop.

3 Comp. Sci. w/ C++: Ch. 1 Turbo C++ IDE Guided Lab (v.2.0) page 3 E. Creating a New Program 1. Create a new program edit window, and then type in the following program exactly as is shown below, using the same indenting, capitialization, and spelling (with the exception of the first line, in which you need to put your name after the double slash): // Please type your name here // My First Program #include <iostream.h> int main() { cout << "Hello, there!\n"; COUT << "\n"; cout << "Welcome to Turbo C++\n" Cout << \n; cout < "Good Bye!\n; } return 0; 2. The program shown in the edit window is called the source code. As you type, notice that different words and symbols automatically appear in different colors. 3. Save the source code of your program on your auxiliary memory device by using either the File Menu or by pressing F2. (Be sure to save to your auxiliary memory, not the hard drive.) If using a floppy disk, name the file: A:\FIRST.CPP If using a flash drive, name the file: E:\Cfiles\FIRST.CPP (use E: or F: ) F. Compiling a Program 1. Compile the program to create the object code (the machine language version of the program). You can compile the program by using either the Compile option in the Compile Menu, or by pressing Alt + F9. a. What happened when you tried to compile the program? How many error messages did you received? (Be sure to use the message scroll bar to see all of them!) Write the first error message here: Write the second error message here: b. Fix the first error indicated by changing COUT to all lower case letters (at the beginning of second statement after the opening french brace - { - symbol.) c. Fix the second error indicated by putting a semi-colon at the end of third statement after the opening french brace.)

4 Comp. Sci. w/ C++: Ch. 1 Turbo C++ IDE Guided Lab (v.2.0) page 4 2. Try to compile the program again. What happened? How many error messages did you received this time? How many errors occurred on line 11? (Fix the errors by replacing Cout with cout (all lower case), and by putting quotes around the \n on the same line.) 3. Keep trying to compile the program until all of the errors are fixed. (HINT: look at the previous lines of code to see if you can fix the errors left there is only one more line that has some errors.) Record the corrected line of code below. (If you absolutely cannot fix the errors, please ask for help.) The program will be free of syntax errors when it says SUCCESS at the bottom of the compile window. Be sure to save your program again once it compiles successfully! Corrected line: G. Running a Program 1. To run the compiled program use the Run option under the Run Menu, or press Ctrl + F9. 2. Run FIRST.CPP now. a. The output goes to the user screen for a brief period of time, and then returns you to the edit window the user screen flashes up for only a moment. b. To see the user screen again, press Alt + F5, or use the User Screen option under the Window Menu at the right of the menu bar. What do you see on the screen? Pressing any key will then return you to the edit window. H. Toggling between Windows and Turbo C++ You can change the Turbo C++ to appear as a separate window on the Windows screen by typing Alt + Enter. This allows you to access other Windows programs, including programs like Notepad, as well as access to My Computer and the file structure of your auxiliary memory device. Please try it now. To return Turbo C++ to the full screen display, once again type Alt + Enter. I. Printing the Source Code on the Printer A hardcopy is a paper listing of your program's source code. Unfortunately, you cannot use the Print option of the File Menu in this computer lab. To make a hardcopy of FIRST.CPP, you need to open the file in Notepad, and then print it. (To access Notepad, recall what you did in part H. of this worksheet.) You will need to hand in this hardcopy with this worksheet when you are finished.

5 Comp. Sci. w/ C++: Ch. 1 Turbo C++ IDE Guided Lab (v.2.0) page 5 J. Changing the Directory from which you are working 1. To change the directory or disk from which you are working, use the Change dir... option of the File Menu. Right now, change the directory: If using a floppy disk, change directory to: A:\ If using a flash drive, change directory to: E:\Cfiles\ (use E: or F: ) Notice what happens to the file name at the top of the Edit Window it no longer shows the folder path with the file name. NOTE: This is a step you will ALWAYS do when you enter Turbo C++ from now on; it will prevent you from accidentally saving programs to the hard drive and instead save them to your disk or flash drive. 2. Now, rerun the program FIRST.CPP, and watch the light on the floppy drive or your flash drive. What happened?. Congratulations, you just created an executable version of the program on your disk! K. Loading in a Program from Disk 1. To load a program from your disk, use the Open option under the File Menu, or press F3. Try to load in the program GREETING.CPP from your disk now. Be sure that you are trying to load from the correct drive and folder; if not, be sure to change the directory by typing A:\ or E:\Cfiles\ and press the Enter key to activate the disk drive. Use the mouse or the cursor keys to highlight the correct file name, or just type the file name. 2. Try running the program GREETING.CPP without compiling it first. Describe what happened. 3. Close GREETING.CPP right now, so that the edit window for FIRST.CPP is again visible. L. Files on your disk 1. In the File menu, choose the Open option, and in the Name box enter: *.* This should show you the names of all the files on your disk. Write the names of all the files that are on your disk here: 2. You should notice that one of the files has an extension.bak. This is a backup version of the program from the previous time you saved it. The updated version gets the.cpp extension. 3. The other files have extensions of.obj (the object code) and.exe (the executable code)

6 Comp. Sci. w/ C++: Ch. 1 Turbo C++ IDE Guided Lab (v.2.0) page 6 M. Exiting Turbo C++ 1. To exit Turbo C++, use the Quit option under the File Menu, or press Alt + X. 2. Try exiting now. The computer may inform you that changes were made to the program FIRST.CPP. Tell the computer you wish to save the changes. This is a nice feature of Turbo C++ that helps you avoid losing updated programs. You should always exit Turbo C++ this way before turning off the computer s power. N. Using the DOS Shell 1. The DOS Shell allows the user access to DOS without having to quit Turbo C++ and close all program files. To shell out to DOS, use the DOS Shell option under the File Menu at the top of the screen. Use the DOS Shell now; this takes you to the command prompt. 2. Look at the directory for your auxiliary device; at the command prompt, type: dir a:\ or dir e:\cfiles\ You should notice a file called FIRST.EXE on the disk. This is the executable code that was saved on your disk when you last compiled the program FIRST.CPP. a. To run an executable program out of DOS, simply type the name of the program (the extension is not necessary) at the command prompt. If using a floppy disk, type: A:\FIRST If using a flash drive, name the file: E:\Cfiles\FIRST (use E: or F: ) What happened? b. Executable code is a nice feature of many high-level programming languages. It allows a person to run a program written in C++ (or Pascal, etc.) without having to have the C++ compiler. Most game or other application programs are written this way; only the executable code gets sold and cannot be changed by the user. c. A word of caution. It is best to compile a program to memory instead of disk, until the program is completely finished. This is because the executable code takes up quite a bit more disk space than the source code. 3. To get back into Turbo C++ from the DOS Shell, at the command prompt, type: exit This will return you to Turbo C++ with all the files open that were open when you shelled out to DOS. O. Finishing the Project You may now quit Turbo C++. Be sure to hand in: this worksheet with all the answers written down, and the hardcopy of the program FIRST.CPP that you made in section I of this worksheet.

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

Basic Computer Skills for Beginners. Mesa Regional Family History Center

Basic Computer Skills for Beginners. Mesa Regional Family History Center Basic Computer Skills for Beginners Mesa Regional Family History Center Know your Keyboard Most keys on the keyboard are the same as an electric typewriter. The four arrows (lower right side) move 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

Getting Started on the Computer With Mouseaerobics! Windows XP

Getting Started on the Computer With Mouseaerobics! Windows XP This handout was modified from materials supplied by the Bill and Melinda Gates Foundation through a grant to the Manchester City Library. Getting Started on the Computer With Mouseaerobics! Windows XP

More information

AT&T Global Network Client v6.8.0 and Passport IP Setup Instructions for Broadband VPN Access

AT&T Global Network Client v6.8.0 and Passport IP Setup Instructions for Broadband VPN Access AT&T Global Network Client v6.8.0 and Passport IP Setup Instructions for Broadband VPN Access October 19, 2006 1 Installing AT&T GNC 6.8.0 for Broadband VPN Access... 3 Getting Started... 3 License Agreement...

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

Computer Programming In QBasic

Computer Programming In QBasic Computer Programming In QBasic Name: Class ID. Computer# Introduction You've probably used computers to play games, and to write reports for school. It's a lot more fun to create your own games to play

More information

Introduction to the UNIX Operating System and Open Windows Desktop Environment

Introduction to the UNIX Operating System and Open Windows Desktop Environment Introduction to the UNIX Operating System and Open Windows Desktop Environment Welcome to the Unix world! And welcome to the Unity300. As you may have already noticed, there are three Sun Microsystems

More information

WORDPAD TUTORIAL WINDOWS 7

WORDPAD TUTORIAL WINDOWS 7 WORDPAD TUTORIAL WINDOWS 7 Quick Access bar Home Tab Triangles = More Commands Groups on the Home tab Right paragraph margin Left paragraph Margin & Indent Paragraphs Ruler Hover the mouse pointer over

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

XRD CONVERSION USER S MANUAL

XRD CONVERSION USER S MANUAL XRD CONVERSION USER S MANUAL Table of Contents Document Layout........................................ 1 Starting XRD Conversion.................................. 2 XRD Conversion Main Window............................

More information

Getting Started with the Cadence Software

Getting Started with the Cadence Software 1 Getting Started with the Cadence Software In this chapter, you learn about the Cadence software environment and the Virtuoso layout editor as you do the following tasks: Copying the Tutorial Database

More information

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window.

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window. Word Processing Microsoft Works Windows 95 The intention of this section is to instruct basic word processing skills such as creating, editing, formatting, saving and closing a new document. Microsoft

More information

Windows 7 for beginners

Windows 7 for beginners Windows 7 for beginners Hardware Hardware: the physical parts of a computer. What s in the computer? CPU: the central processing unit processes information (the brain) Hard drive: where all of your software

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

r-one Python Setup 1 Setup 2 Using IDLE 3 Using IDLE with your Robot ENGI 128: Introduction to Engineering Systems Fall, 2014

r-one Python Setup 1 Setup 2 Using IDLE 3 Using IDLE with your Robot ENGI 128: Introduction to Engineering Systems Fall, 2014 r-one Python Setup 1 Setup The files needed are available in the Resources page of http://www.clear.rice.edu/engi128. You will need to setup two files: Python 2.7.8 and PySerial 1. Download Python 2.7.8.

More information

Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac)

Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac) Passports in Microsoft PowerPoint Quick Guide Created Updated PowerPoint is a very versatile tool. It is usually used to create multimedia presentations and printed handouts but it is an almost perfect

More information

Microsoft Word Basics Workshop

Microsoft Word Basics Workshop Microsoft Word Basics Workshop Microsoft Word is the most commonly used word processing software program in the world. Most likely, you use it on your computer regularly, yet you may have never really

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

Division of School Facilities OUTLOOK WEB ACCESS

Division of School Facilities OUTLOOK WEB ACCESS Division of School Facilities OUTLOOK WEB ACCESS New York City Department of Education Office of Enterprise Development and Support Applications Support Group 2011 HELPFUL HINTS OWA Helpful Hints was created

More information

Windows File Management A Hands-on Class Presented by Edith Einhorn

Windows File Management A Hands-on Class Presented by Edith Einhorn Windows File Management A Hands-on Class Presented by Edith Einhorn Author s Notes: 1. The information in this document is written for the Windows XP operating system. However, even though some of the

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

Computer Basics: Tackling the mouse, keyboard, and using Windows

Computer Basics: Tackling the mouse, keyboard, and using Windows Computer Basics: Tackling the mouse, keyboard, and using Windows Class Description: Interested in learning how to use a computer? Come learn the computer basics at the Muhlenberg Community Library. This

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

Microsoft Windows Overview Desktop Parts

Microsoft Windows Overview Desktop Parts Microsoft Windows Overview Desktop Parts Icon Shortcut Icon Window Title Bar Menu Bar Program name Scroll Bar File Wallpaper Folder Start Button Quick Launch Task Bar or Start Bar Time/Date function 1

More information

Connection to USOE Terminal Server 3/30/2006

Connection to USOE Terminal Server 3/30/2006 Connection to USOE Terminal Server 3/30/2006 Installing the Client In order to install the Remote Desktop and the Remote Printing you will need to have administrator rights to your machine. If you don

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

What is File Management. Methods for Categorizing Data. Viewing Data on a Computer

What is File Management. Methods for Categorizing Data. Viewing Data on a Computer What is File Management As described earlier, file management is basically the process of designing new folders and assigning files to those folders. The main goal in file management is to have a system

More information

Introduction to SketchUp

Introduction to SketchUp Introduction to SketchUp This guide is handy to read if you need some basic knowledge to get started using SketchUp. You will see how to download and install Sketchup, and learn how to use your mouse (and

More information

Welcome to GAMS 1. Jesper Jensen TECA TRAINING ApS jensen@tecatraining.dk. This version: September 2006

Welcome to GAMS 1. Jesper Jensen TECA TRAINING ApS jensen@tecatraining.dk. This version: September 2006 Welcome to GAMS 1 Jesper Jensen TECA TRAINING ApS jensen@tecatraining.dk This version: September 2006 1 This material is the copyrighted intellectual property of Jesper Jensen. Written permission must

More information

Biopac Student Lab BASIC TUTORIAL. BIOPAC Systems, Inc. Version 3.0.3

Biopac Student Lab BASIC TUTORIAL. BIOPAC Systems, Inc. Version 3.0.3 Biopac Student Lab Version 3.0.3 PC running Windows or Macintosh BASIC TUTORIAL Running the Biopac Student Lab page 3 Locating files in Review Saved Data mode page 4 Important Concepts pages 6, 7, 10 Display

More information

Instructions for Importing (migrating) Data

Instructions for Importing (migrating) Data Instructions for Importing (migrating) Data from CTAS Version 7 to CTAS Version 8 For Windows 8 and 8.1 CTAS Version 8 is designed to work with your Version 7 data if you choose to. These instructions

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

Using Microsoft Project 2000

Using Microsoft Project 2000 Using MS Project Personal Computer Fundamentals 1 of 45 Using Microsoft Project 2000 General Conventions All text highlighted in bold refers to menu selections. Examples would be File and Analysis. ALL

More information

Excel macros made easy

Excel macros made easy IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.

More information

This Manual contains the following How To information:

This Manual contains the following How To information: This Manual contains the following How To information: I. How to Register a Humminbird Product II. How to Download HumminbirdPC III. How to Download and Install Humminbird Software Upgrades IV. How to

More information

Running your first Linux Program

Running your first Linux Program Running your first Linux Program This document describes how edit, compile, link, and run your first linux program using: - Gnome a nice graphical user interface desktop that runs on top of X- Windows

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

Using Windows CE Applications in the Pathfinder

Using Windows CE Applications in the Pathfinder Using Windows CE Applications in the Pathfinder Prentke Romich Company 1022 Heyl Rd. Wooster, Ohio 44691 Phone: 1-800-262-1984 14002v1.02 PRC Service Disclaimer Prentke Romich Company is not responsible

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

Passport installation Windows 8 + Firefox

Passport installation Windows 8 + Firefox Passport installation Windows 8 + Firefox OS Version Windows 8 System Type 32-bit and 64-bit Browser name & version Firefox 23 Before you begin Check you have Anti Virus software installed on your computer

More information

HIT THE GROUND RUNNING MS WORD INTRODUCTION

HIT THE GROUND RUNNING MS WORD INTRODUCTION HIT THE GROUND RUNNING MS WORD INTRODUCTION MS Word is a word processing program. MS Word has many features and with it, a person can create reports, letters, faxes, memos, web pages, newsletters, and

More information

This activity will guide you to create formulas and use some of the built-in math functions in EXCEL.

This activity will guide you to create formulas and use some of the built-in math functions in EXCEL. Purpose: This activity will guide you to create formulas and use some of the built-in math functions in EXCEL. The three goals of the spreadsheet are: Given a triangle with two out of three angles known,

More information

INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT

INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT Starting PowerPoint 1. Click the Start button 2. Click on Microsoft Office PowerPoint on the Programs menu. If you don t see it there,

More information

Malwarebytes Anti-Malware 1.42

Malwarebytes Anti-Malware 1.42 Downloading Installing And First-Time Use Updating and Scanning Malwarebytes Anti-Malware 1.42 DOWNLOADING Download the latest version of Malwarebytes Anti-Malware (currently 1.42) from http://www.download.com.

More information

Getting Started with Command Prompts

Getting Started with Command Prompts Getting Started with Command Prompts Updated March, 2013 Some courses such as TeenCoder : Java Programming will ask the student to perform tasks from a command prompt (Windows) or Terminal window (Mac

More information

HogPC. Introduction to HogPC

HogPC. Introduction to HogPC HogPC Introduction to HogPC Starting HogPC Click on the HogPC icon on the Start Menu The Show Locator window opens: Starting HogPC Use the Folder Viewer on the left to select either a folder that contains

More information

Exercise 4 - Practice Creating Text Documents Using WordPad

Exercise 4 - Practice Creating Text Documents Using WordPad Exercise 4 - Practice Creating Text Documents Using WordPad 1. Open and use WordPad by doing the following: A. Click on the Start button on the left side of the taskbar to open the Start window. B. Click

More information

Windows 8.1 User Guide

Windows 8.1 User Guide Windows 8.1 User Guide This guide has been created to assist with lectures held in the ANU Information Commons. Further tips and training for using Windows 8.1 can be found on the IT Services website.

More information

File Management Windows

File Management Windows File Management Windows : Explorer Navigating the Windows File Structure 1. The Windows Explorer can be opened from the Start Button, Programs menu and clicking on the Windows Explorer application OR by

More information

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

CS 103 Lab Linux and Virtual Machines

CS 103 Lab Linux and Virtual Machines 1 Introduction In this lab you will login to your Linux VM and write your first C/C++ program, compile it, and then execute it. 2 What you will learn In this lab you will learn the basic commands and navigation

More information

Training Manual. Version 6

Training Manual. Version 6 Training Manual TABLE OF CONTENTS A. E-MAIL... 4 A.1 INBOX... 8 A.1.1 Create New Message... 8 A.1.1.1 Add Attachments to an E-mail Message... 11 A.1.1.2 Insert Picture into an E-mail Message... 12 A.1.1.3

More information

Getting Started with Citrix Remote Connectivity Service

Getting Started with Citrix Remote Connectivity Service Getting Started with Citrix Remote Connectivity Service What is Citrix? In the simplest of terms, Citrix is a client/server application that enables you to access many of the same programs from home that

More information

Activation Key usage and Windows 7 Professional installation guide

Activation Key usage and Windows 7 Professional installation guide Activation Key usage and Windows 7 Professional installation guide Please start from page 8 when you already have an unactivated Windows 7 Professional. Otherwise please start from the beginning of the

More information

KEYBOARD SHORTCUTS. Note: Keyboard shortcuts may be different for the same icon depending upon the SAP screen you are in.

KEYBOARD SHORTCUTS. Note: Keyboard shortcuts may be different for the same icon depending upon the SAP screen you are in. KEYBOARD SHORTCUTS Instead of an SAP icon button, you can use a keyboard shortcut. A keyboard shortcut is a key or combination of keys that you can use to access icon button functions while you are working

More information

Profit Developers, Inc. (PDI) 2015 SAXTAX Software Installation Guide

Profit Developers, Inc. (PDI) 2015 SAXTAX Software Installation Guide 2015 SAXTAX Software Installation Guide 1. Installation: Installing from a Link: Please click on the link provided in the setup email received. Some email accounts will not allow access to executable links

More information

Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM

Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM laptop will need to have 10GB of free space to install download the latest VirtualBox software from www.sun.com make sure you pick

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

AARP Tax-Aide Helpful Hints for Using the Volunteer Excel Expense Form and Other Excel Documents

AARP Tax-Aide Helpful Hints for Using the Volunteer Excel Expense Form and Other Excel Documents AARP Tax-Aide Helpful Hints for Using the Volunteer Excel Expense Form and Other Excel Documents This document is designed to give you information to help you perform Excel file functions associated with

More information

Win8 Networking FinishLynx with Meet Management Technical Support Guide

Win8 Networking FinishLynx with Meet Management Technical Support Guide FINISHLYNX NETWORKING WIN 8 LYNX SYSTEM DEVELOPERS, INC. Win8 Networking FinishLynx with Meet Management Technical Support Guide Sections 1 and 2 should be completed on both FinishLynx and Meet Management

More information

Microsoft Excel 2010 Linking Worksheets and Workbooks

Microsoft Excel 2010 Linking Worksheets and Workbooks Microsoft Excel 2010 Linking Worksheets and Workbooks Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Linking Worksheets & Workbooks 1.5 hour Topics include

More information

How to Compile, Link, and Execute C or C++ Codes Using Microsoft Visual C++

How to Compile, Link, and Execute C or C++ Codes Using Microsoft Visual C++ How to Compile, Link, and Execute C or C++ Codes Using Microsoft Visual C++ 1. First, you need to click Start button, Programs, and then Microsoft Visual C++ 5.0 or 6.0 to launch MS Visual C++, shown in

More information

edocfile Capture to Command Line Manual Revised 9/4/2006 Call 813-298-2474 www.edocfile.com Sales@edocfile.com

edocfile Capture to Command Line Manual Revised 9/4/2006 Call 813-298-2474 www.edocfile.com Sales@edocfile.com edocfile Capture to Command Line Manual Revised 9/4/2006 Call 813-298-2474 www.edocfile.com Sales@edocfile.com About this Program This program is designed to easily capture data from a user s screen and

More information

Fleet Maintenance Software

Fleet Maintenance Software Fleet Maintenance Software Welcome Thank you for taking time to review FleetWise VB Maintenance Management Made Simple. This guide is intended to provide a quick overview of installing the software and

More information

Getting to know Windows 8

Getting to know Windows 8 Getting to know Windows 8 Queen Mary student desktop Sign In & Sign Out Sign in: Please enter your Queen Mary username and password when prompted. Sign out: There are two easy ways to sign out: From the

More information

User Manual. DG LINK Application Program 071-0056-50. www.tektronix.com. This document applies to firmware version 2.00 and above.

User Manual. DG LINK Application Program 071-0056-50. www.tektronix.com. This document applies to firmware version 2.00 and above. User Manual DG LINK Application Program 071-0056-50 This document applies to firmware version 2.00 and above. www.tektronix.com Copyright Tektronix Japan, Ltd. All rights reserved. Copyright Tektronix,

More information

Passport Installation. Windows 8 + Internet Explorer 10

Passport Installation. Windows 8 + Internet Explorer 10 Passport Installation Windows 8 + Internet Explorer 10 OS Version Windows 8 System Type 32bit and 64bit Browser Name & version Internet Explorer 10 Before you begin Make sure you have Anti Virus software

More information

Office 365 Training. Contents

Office 365 Training. Contents Office 365 Training Contents Logging into Office 365 and setting up your Office 365 Suite... 3 Moving Files to OneDrive for Business Cloud Storage... 6 - Creating Folders to organize your OneDrive... 9

More information

ADVANCED OUTLOOK 2003

ADVANCED OUTLOOK 2003 ADVANCED OUTLOOK 2003 Table of Contents Page LESSON 1: MANAGING YOUR MAILBOX LIMITS...1 Understanding Mailbox Limits...1 Setting AutoArchive...3 AutoArchiving Your Folders...5 Deleting Items Automatically...7

More information

How to Concatenate Cells in Microsoft Access

How to Concatenate Cells in Microsoft Access How to Concatenate Cells in Microsoft Access This tutorial demonstrates how to concatenate cells in Microsoft Access. Sometimes data distributed over multiple columns is more efficient to use when combined

More information

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class.

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. Creating a Pie Graph Step-by-step directions In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. 1. Enter Data A. Open

More information

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows 7

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows 7 5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows 7 Introduction Print and complete this lab. In this lab, you will use Windows built-in utilities to gather information about

More information

Table of Contents. Changing Your Password in Windows NT p. 1. Changing Your Password in Alpha Connection.. pp. 1-3

Table of Contents. Changing Your Password in Windows NT p. 1. Changing Your Password in Alpha Connection.. pp. 1-3 Table of Contents Changing Your Password in Windows NT p. 1 Changing Your Password in Alpha Connection.. pp. 1-3 Not Able to Get Outlook Express Mail Because Alpha Connection Password Expires... pp. 3-4

More information

CATIA Basic Concepts TABLE OF CONTENTS

CATIA Basic Concepts TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10

More information

Operating Systems. and Windows

Operating Systems. and Windows Operating Systems and Windows What is an Operating System? The most important program that runs on your computer. It manages all other programs on the machine. Every PC has to have one to run other applications

More information

Passport Installation. Windows XP + Internet Explorer 8

Passport Installation. Windows XP + Internet Explorer 8 Passport Installation Windows XP + Internet Explorer 8 OS Version Windows XP System Type 32bit or 64bit Browser & version Internet Explorer 8 Before you begin.. Make sure you have Anti Virus software installed

More information

Troubleshooting Guide

Troubleshooting Guide How to remove Windows XP Service Pack 2 from your computer Company web site: Support email: support@ Support telephone: +44 20 3287-7651 +1 646 233-1163 2 Some of the EMCO Products don't work properly

More information

Lesson 1 - Creating a C18 Project with MPLAB

Lesson 1 - Creating a C18 Project with MPLAB Lesson 1 - Creating a C18 Project with MPLAB Objectives To build a C18 project Identify the location of C18 program files Preparation: Microchip s MPLAB IDE and MPLAB C18 compiler are required for this

More information

Microsoft Excel 2007. Introduction to Microsoft Excel 2007

Microsoft Excel 2007. Introduction to Microsoft Excel 2007 Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Excel is an electronic spreadsheet to organize your data into rows and columns. One can use it to perform basic to advanced level mathematical

More information

Introduction. POP and IMAP Servers. MAC1028 June 2007

Introduction. POP and IMAP Servers. MAC1028 June 2007 MAC1028 June 2007 Getting Started with Thunderbird 2.0 For Macintosh OS X Author: John A. Montgomery Adapted to OS X by: Peter Lee Revised by Mitchell Ochi and Deanna Pasternak Introduction...1 POP and

More information

warpct.com Basic Computer Skills MS Windows XP Workbook courseware by WARP! Computer Training

warpct.com Basic Computer Skills MS Windows XP Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training Basic Computer Skills MS Windows XP Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding

More information

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website

More information

Employee Manual Development Tool Version 7.0. User Guide

Employee Manual Development Tool Version 7.0. User Guide rotecting entists. t s all e do. Employee Manual Development Tool Version 7.0 User Guide Developing Effective Employment Practices A guide for dentists The Dentists Insurance Company Page 1 Table of Contents

More information

Lecture 2 Mathcad Basics

Lecture 2 Mathcad Basics Operators Lecture 2 Mathcad Basics + Addition, - Subtraction, * Multiplication, / Division, ^ Power ( ) Specify evaluation order Order of Operations ( ) ^ highest level, first priority * / next priority

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

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 1 Contents Chapter 1 System Requirements.................. 3 Chapter 2 Quick Start Installation.................. 4 System Requirements................

More information

Introduction to Windows XP Operating System

Introduction to Windows XP Operating System Introduction to Windows XP Operating System Introduction to Windows XP Operating System Document Syllabus Course Description: This workshop will introduce basic Windows operating system concepts. Using

More information

GETTING STARTED TABLE OF CONTENTS

GETTING STARTED TABLE OF CONTENTS Windows 7 Tutorial GETTING STARTED An operating system, sometimes called an OS, is the main program the computer uses to function properly. Operating systems act as a link between you, the user, and the

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

FILE MANAGEMENT. About this Document Words in bold

FILE MANAGEMENT. About this Document Words in bold FILE MANAGEMENT Introduction This document covers the basics of storing, filing and locating files on your computer. The instructions assume you are using Birkbeck s computers, but the techniques contained

More information

Capture desktop image to Clipboard. Display contextual Help Window. Rename.

Capture desktop image to Clipboard. Display contextual Help Window. Rename. Shortcut CTRL+A CTRL+B CTRL+C CTRL+E CTRL+I CTRL+L CTRL+O CTRL+P CTRL+R CTRL+S CTRL+U CTRL+V CTRL+X CTRL+Z CTRL+ESC SHIFT+F10 ESC ALT ALT+ENTER ALT+F4 ALT+PRINT SCREEN PRINT SCREEN F1 F2 F3 DELETE SHIFT+DELETE

More information

Using Windows XP and File Management Handout (Staff)

Using Windows XP and File Management Handout (Staff) Using Windows XP and File Management Handout (Staff) The XP Interface Logging on to your computer. Logging in on campus. Analogy of a safe. Login screen Domains - FFLDU, Fairfield, Local Machine, Prep

More information

Using Microsoft Word. Working With Objects

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

More information

Loss of data can happen in many ways. One of the most common causes is hard drive failure. Hard drives can die without warning.

Loss of data can happen in many ways. One of the most common causes is hard drive failure. Hard drives can die without warning. Backing up Important Data Data Backup Procedures for Medford High School Faculty & Staff Backup Procedures for saving to: Zip Drives CD-ROM Drives Floppy Disks Data Travelers And how to use the Windows

More information

AN INTRODUCTION TO STAROFFICE WRITER

AN INTRODUCTION TO STAROFFICE WRITER CHAPTER 1 AN INTRODUCTION TO STAROFFICE WRITER 1.1 An Introduction to StarOffice StarOffice is an application that is designed to work on different operating systems. StarOffice is a full-featured office

More information

PowerPoint 2013: Basic Skills

PowerPoint 2013: Basic Skills PowerPoint 2013: Basic Skills Information Technology September 1, 2014 1 P a g e Getting Started There are a variety of ways to start using PowerPoint software. You can click on a shortcut on your desktop

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

Steps to Create a Database

Steps to Create a Database Steps to Create a Database Design the Database In order for a database to be effective some time should be spent on the layout of the table. Additionally, time should be spent on what the purpose of the

More information

ZoomText 10.1 for Windows 8 Quick Reference Guide Addendum

ZoomText 10.1 for Windows 8 Quick Reference Guide Addendum ZoomText 10.1 for Windows 8 Quick Reference Guide Addendum This addendum to the ZoomText 10 Quick Reference Guide covers the new features and other changes specific to ZoomText 10.1 for Windows 8. For

More information