3 IDE (Integrated Development Environment)

Size: px
Start display at page:

Download "3 IDE (Integrated Development Environment)"

Transcription

1 Visual C 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, and enables developers to create Windows applications and components, written in C and C++. 2 Starting Visual C++ To start Visual C++, click on start Programs Microsoft Visual C group Microsoft Visual C icon. A Visual C++ screen will be displayed briefly before the development environment comes up. The first thing you might encounter is the Tip of the Day window which you could safely close. The first screen you will see after that is the empty development window, called the IDE (Integrated Development Environment) 3 IDE (Integrated Development Environment) Visual C is an Integrated Development Environment (IDE) and is primarily used to create programs with graphic user interfaces (GUI) to run under MS Windows. The first, almost empty screen that appears is the IDE, where programs are created (editor), compiled, linked, and tested in one environment. Both Windows type programs and non-windows programs could be developed using Visual C++. 4 The Visual C++ Environment 4.1 Overview The Visual C++ IDE consists of several windows, drop-down menus, toolbars, tools, and other elements like many other programs designed for Windows. It could also be customized by the user to show different windows and toolbars. First, Right click in the center of the windows and make sure that the Output and Workspace items are checked or selected. Menu Bar Standard Bar Workspace Window Text Editor Window Output Window Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 1 of 16

2 You can choose whether or not to display each of these windows, and there are several ways to control the display of the Output and Workspace windows; each window display can be toggled on or off. Please note that as you develop programs in Visual C++, other toolbars may appear automatically. 4.2 Customizing Visual C++ You can customize Visual C++ to suit your needs. Among other customizations, you can add buttons to toolbar, move the toolbars to different location, and create custom shortcut keys. 4.3 Projects and Workspaces The following diagram shows a typical situation, and how Visual C++ represents the structure in the workspace window. One Workspace Two Projects FileView Tab Visual C++ organizes the environment and files in a hierarchical structure. The top level is called a workspace. Only one workspace can be open at any time. A workspace can contain multiple projects. A project usually contains multiple files, grouped by file type. Always ensure that in the workspace window, the FileView tab is selected in order to see the workspace hierarchy Workspace A workspace keeps track of which projects are part of the workspace, as well as some settings such as the arrangements of windows. When the workspace contains multiple projects, only one project is active at any moment in time. The active project is indicated in boldface. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 2 of 16

3 Every project must belong to a workspace. Therefore, if you attempt to create a project without first creating a workspace, a workspace is automatically created. Workspace information is kept in a workspace file with the filename extension "dsw" Project A project keeps track of all the files needed to build the final executable program, as well as some settings such as where to place temporary files. Project information is kept in a project file with the filename extension "dsp" Source Files The source files contain the source code for the program. For a large program, the source code is usually split into multiple files Header Files Header files contain information that needs to be shared among multiple source files Object files Object files contain machine code from each corresponding source file. The object files are linked together to create the final executable program. 4.4 Create a Sample Project When you create a new project, a project workspace is created for you automatically. You use the Project Workspace window to view and access the various elements of your projects. For this example, we will only be creating one project in the workspace, but you could create or include several projects in one workspace. On the Menu Bar, Click of File New, and the following window will open 1. Click 4. Typing a project name creates a corresponding folder 3. Type or Navigate 2. Click 5. Check Next 6. Click Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 3 of 16

4 1. Select 2. Click Next Click Project Types Each project has a Project Type, which you choose when you create the project. The project type specifies to Visual C++ what to generate and also specifies some default settings required in order to build that output type. Remember that for our sample project, we have chosen the Win32 Console Application type. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 4 of 16

5 This project type provides character-mode support in console windows. In other words a program having this project type will run in a console window (DOS-like window) that supports standard I/O C functions, such as printf() and scanf() Workspace FileView The FileView displays all the files associated with a project or projects that you have created. These can include Source, Header and Resource files. When you click on the FileView tab, the FileView pane shows the relationships among the projects and files included in the project workspace. The relationships in the FileView are logical relationships and not physical relationships. Moreover, these relationships do not reflect the organization of files on your hard disk. Project Tree FileView Tab Closing the Workspace In the Menu Bar, click on File Close Workspace; this will close your project workspace. Choosing File Exit will exit the Visual C++ package and return to the main Windows screen Workspace Files You have just set up a new project; although you have not yet created any C files, your project already contains four special files called Project Workspace Files. Sample Project.dsp - how your program is to be created from files in the project workspace Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 5 of 16

6 Sample Project.opt - stores settings for the project workspace, created when the project is closed Sample Project.dsw - stores additional information about the workspace Sample Project.ncb - stores browse information about your program for Visual C++ You may want to check your project directory content (d:\project Sample) and verify that you have these 4 files. 5 Writing your First Program We will be using the Sample Project you have created to write a simple Hello World C program. But first, we need to open the Sample Project workspace you have create earlier. 5.1 Retrieving a Project The first step to writing a program using the Visual C++ IDE is to create a project. Since we have created a project earlier in section 4.??, let us retrieve the Sample Project by opening its workspace. An existing workspace or project can be opened either from within Visual C++, or by double-clicking the corresponding workspace or project file from Windows Explorer. In the Menu Bar, click on File Open; browse through your disk and locate the Sample Project folder. The folder should contain a Sample Project.dsw file. Select it then click on Open. Alternatively, you could have opened the most recently saved workspace in one shot. Click on the File drop-down menu, and go over Recent Workspaces menu item towards the bottom and click on Sample Project. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 6 of 16

7 5.2 Adding Source Files Select File New from the Main Bar. Since Visual C++ knows that we have created a project, the Files tab is selected by default. Make sure that your source file has the extension.c and NOT.cpp (.c for C files, and.cpp for C++ files) This will open a new editor window to display an empty file, which will have the file name you assigned (HelloWorld.c) 1. Click 3. Check 2. Click 4. Type filename 5. Click 5.3 Entering (Typing and Editing) the Program Enter the following code in the Editor Window. This program purpose of this program is to display the text message Hello World! in a console window. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 7 of 16

8 /*HelloWorld sample program*/ #include<stdio.h> main() { printf("hello World!"); } Save the file by choosing File Save from the Menu Bar or by pressing Ctrl-S on the keyboard The Editor The Visual C++ editor is optimized for writing C/C++ code, though most of the procedures for using this editor should be familiar to you if you have used other Windows-based text editors. Notice the text indentation and that some text in shown with different colors. This is because automatic indenting and syntax color highlighting are parts of the editor. Syntax coloring uses different colors for various code elements, such as keywords or comments. While using the Text editor, and depending on the text that your mouse pointer is pointed to, you may right-click the mouse button to display a shortcut menu of frequently used commands available for that text. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 8 of 16

9 Text Selection The editor allows you to select words, lines, multiple lines, and column blocks of text to copy, cut, delete, or indent. The left most light-gray column of your editor screen is called the selection margin; when the mouse cursor reaches this light grey area, the cursor will change into a pointer pointing to the right. To select a word/words: Position your cursor before or after the text, click the left-mouse button and drag over the desired text word/s. To select a line of text : In the selection margin, point to the beginning of the text you want to select and click the left mouse button. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 9 of 16

10 To select multiple lines of text: In the selection margin, point to the beginning of the text you want to select. Drag either up or down to select the lines of text. To select a column block of text: Point to the beginning of the text you want to select, then, hold down the ALT key and click the left mouse button (do not release). Move the mouse to point at the end of the text you want to select and release the ALT key. To cancel column-select mode, click the left mouse button. After you have made your selection, the selected text could be copied, deleted, cut or indented Copy, Paste, Indent After you have selected your text, you could: Copy: By pressing Ctrl-C on the keyboard, or By right-clicking your mouse and select Copy from the pull down menu, or Select Edit Copy from the Menu Bar. Paste: To paste your text, move the insertion point to any source window where you want to insert the text, and: Press Ctrl-V on the keyboard, or Right-click your mouse and select Paste from the pull down menu, or Select Edit Paste from the Menu Bar. Indent: To indent your text selection, press the Tab key as desired. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 10 of 16

11 Keyboard Shortcuts The text editor many editing commands which are accessible in different ways: by accessing the Edit pull down menu (on the Menu Bar) or from the shortcut menu. The editor supports many text editing commands, but not all of them appear on the menus and toolbars. However, you can learn the most used keyboard shortcut commands and use them when needed. To access the complete list of keyboard shortcut commands, choose Keyboard Map from the Help menu, and choose Edit in the drop-down list. All of the Text editor commands are listed, along with the current key binding and a brief description. Some helpful keyboard shortcuts are: Command Keyboard Shortcut Description SelectAll Ctrl+A Selects the entire document Copy Ctrl+C Copies the selection to the Clipboard Cut Ctrl+X Cuts the selection and moves it to the Clipboard Paste Ctrl+V Inserts the Clipboard contents at the insertion point Delete Del Deletes the selection Redo Ctrl+Y Redoes the previously undone action Undo Ctrl+Z Undoes the last action GoToMatchBrace Ctrl+] Finds the matching brace or parenthesis DocumentEnd Ctrl+End Moves to the end of the document DocumentStart Ctrl+Home Moves to the beginning of the file Find Ctrl+F Finds the specified text Searching for Text The text editor provides advanced find and replace capabilities where, you can search for text in a single source file or in multiple files. To find a text string in a single file: Move the insertion point to where you want to begin your search. The editor uses the location of the insertion point to select a default search string. From Menu Bar, Edit Find (or Ctrl-F) 1. Type the text to find 3. Click 2. Select options Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 11 of 16

12 To continue your search, use the Find Next or Find Previous shortcut keys. The default shortcut key for Find Next is F3; the default key combination for Find Previous is SHIFT-F3. To find a text string in multiple source files: From the Menu Bar, File Find In Files 1. Type the text to find 2. File Type 3. Type or browse 4. Check options 7. Click 6. Click 5. Select or browse 5.4 Building a Project Building a project in Visual C++ involves compiling the source files (HelloWorld.c is a source file) in a project to produce object code and then link these files together to produce the executable file (Sample Project.exe). There are alternative ways to building a project in Visual C++ such as clicking the Build button on the Build Toolbar or pressing the F7 key. After the build operation starts, the Output Window (will appear if it was not previously showing on the workspace) will provide the user with the status and error information which might occur during the build process. If the build operation is successful, a message will appear showing that there are no errors or warnings encountered. Note that the output window has several view tabs towards the bottom. To see the build messages in the output window, make sure you select the Build tab. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 12 of 16

13 Build Tab Output Window Rebuild All A typical project is composed many files (source and header) and for some situations, the use of Build ( or F7) would not compile all of your project files. For that reason, you could use the Rebuild All menu option from the Build menu instead of Build Sample Project.exe. This would always force Visual C++ to recompile all of your project files and builds the executable again Exclude from the Build When Build or Rebuild All operation is invoked, it first attempts to recompile your files located in the tree structure of your project. Moreover, these files have some settings whereby you could instruct the build operation to exclude a particular file from the build. So, a file visible in the tree structure does not guarantee its inclusion in the build process. To exclude a file from the build, select this file and right-click it with the mouse Settings Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 13 of 16

14 1. Click 2. Select file 3. Check option to exclude 4. Click Notice that the icon referring to the file will change from to when excluded from the build. 5.5 Error Messages Let us introduce an error in the Hello World program you have typed previously. In the Editor Windows, go to the following line of code and delete the ; from its right end. printf("hello World!") Now build again by choosing any of the above mentioned build methods Correcting Errors If the build operation is not successful, error message/s will be reported in the Output Window (it should fail since we introduced an error). For each displayed error, click on the error number in the Output Window and an arrow will appear in the Text Editor window next to the line of code where the error has been detected. For more help with compile and link errors, click on the error line with the error number and press F1. For the Hello World example, the following error should be reported. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 14 of 16

15 The potential location where the error has been detected When Visual C++ compiler encounters errors, it would report them along with a guess about the potential source of error and the best way to correct it. In a lot of cases, the suspected source of error and the way to fix it are not correct. You should be careful when reading the errors in the output window; do not totally rely on the compilers suggestion. Read your code again and check for errors. 5.6 Executing the Program Error description and number A program can be executed after it has been successfully built. To execute the program, select Execute Sample Project.exe from the Build menu or click on the Execute button on the Build Toolbar. The output of your program will be a DOS-based window appearing in the foreground of the Text Editor window and will look like the one below. Notice that the line (Press any key to continue) will be appended automatically and will freeze the screen; the screen will only close after the user has pressed any key on the keyboard. DOS-based Window Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 15 of 16

16 5.7 Deleting Source Files To delete a source file from the workspace, go to the workspace windows and locate the project tree structure where your file reside (all source files should be located under your Project files Source Files folder. With your mouse, select the file you want to delete by left-clicking on the filename, then press the Delete key on the keyboard. Remember that your project tree structure is not an actual Windows Explorer disk representation; so deleting a source file does not actually delete the file from disk. What gets deleted is the logical relationship that links your workspace to the physical file. 6 Visual C++ Resources The Internet provides many Visual C++ resources and references such as the Microsoft Visual C++ User's Guide. For more information, go to the following web page and click on the User s Guide link. Visual C Guide Part I Copyright 2003 DigiPen Institute Of Technology Sep. 8, 2003 Page 16 of 16

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

Beginning Word. Objectives: You will-

Beginning Word. Objectives: You will- Beginning Word Objectives: You will- 1. Open, close, and save documents. 2. Use the help button to answer questions. 3. Enter/Delete text. 4. Set tabs manually and with page set up. 5. Navigate in a document

More information

1. Click the File tab 2. Click "Options" 3. Click "Save" 4. In the line labeled "Default file location", browse to the desired folder 5.

1. Click the File tab 2. Click Options 3. Click Save 4. In the line labeled Default file location, browse to the desired folder 5. Instructional Technology Services Tips and Tricks for Word Tips & Tricks for Word (in Windows) There are a lot of things you can do in Word to save time, such as changing default settings to your preferred

More information

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

Word 2007: Basics Learning Guide

Word 2007: Basics Learning Guide Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Microsoft Access 97 Keyboard Shortcuts

Microsoft Access 97 Keyboard Shortcuts CTRL+ or CTRL+Shift+ ALT+ number (where hitting key for 1 selects the leftmost option, 2 the next, and so on) ALT+0(ZERO) ALT+B ALT+ in Datasheet view and Move Mode, move the selected column to the right

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

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

9/4/2012. Objectives Microsoft Word 2010 - Illustrated. Unit B: Editing Documents. Objectives (continued) Cutting and Pasting Text

9/4/2012. Objectives Microsoft Word 2010 - Illustrated. Unit B: Editing Documents. Objectives (continued) Cutting and Pasting Text Objectives Microsoft Word 2010 - Illustrated Unit B: Editing Documents Cut and paste text Copy and paste text Use the Office Clipboard Find and replace text 2 Objectives Check spelling and grammar Research

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

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

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

Access 2013 Keyboard Shortcuts

Access 2013 Keyboard Shortcuts Access 2013 Keyboard Shortcuts Access app shortcut keys Design-time shortcut keys These shortcut keys are available when you are customizing an app in Access. Many of the shortcuts listed under Desktop

More information

Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT...

Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT... Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT... 4 Open a blank document... 4 Start a document from a template...

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

Microsoft Office -Windows 7

Microsoft Office -Windows 7 Microsoft Office -Windows 7 File Management Location: Central Library, Technology Room Visit Schenectady County Public Library at http://www.scpl.org (The following document adapted from http://windows.microsft.com/en-us/windows7/help

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

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Microsoft Frontpage 2003 Keyboard Shortcuts

Microsoft Frontpage 2003 Keyboard Shortcuts Work with and manage Web pages F8 CTRL+N CTRL+O CTRL+F4 CTRL+S CTRL+P F5 CTRL+ CTRL+Shift+ CTRL+Shift+B ALT+F4 CTRL+ Shift+8 CTRL+ / CTRL+F F3 Shift+F3 CTRL+F3 CTRL+Shift+F3 CTRL+H F7 Shift+F7 CTRL+Z or

More information

Word 2010 Introduction

Word 2010 Introduction Microsoft Application Series Word 2010 Introduction Best STL Courses never cancelled: guaranteed Last minute rescheduling 24 months access to Microsoft trainers 12+ months schedule UK wide delivery www.microsofttraining.net

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 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 Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

Microsoft Word 2013 Tutorial

Microsoft Word 2013 Tutorial Microsoft Word 2013 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Microsoft Powerpoint 2007 Keyboard Shortcuts

Microsoft Powerpoint 2007 Keyboard Shortcuts In the Help window F1 ALT+F4 ALT+ ALT+HOME Shift+, Shift+ Shift+ ALT LEFT ARROW or BACKSPACE ALT+RIGHT ARROW, PAGE UP, PAGE DOWN F5 CTRL+P Open the Help window in Microsoft Powerpoint. Close the Help window.

More information

Microsoft Dynamics CRM 4.0 User s Guide

Microsoft Dynamics CRM 4.0 User s Guide Microsoft Dynamics CRM 4.0 User s Guide i Microsoft Dynamics CRM 4.0 User s Guide Copyright Information in this document, including URL and other Internet Web site references, is subject to change without

More information

Word 2007 Unit B: Editing Documents

Word 2007 Unit B: Editing Documents Word 2007 Unit B: Editing Documents TRUE/FALSE 1. You can select text and then drag it to a new location using the mouse. 2. The last item copied from a document is stored on the system Clipboard. 3. The

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

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

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

Keyboard shortcuts in Excel 2010. Keyboard access to the ribbon. In this article WILL MY OLD SHORTCUTS STILL WORK? Hide All

Keyboard shortcuts in Excel 2010. Keyboard access to the ribbon. In this article WILL MY OLD SHORTCUTS STILL WORK? Hide All Page 1 of 9 Excel > Accessibility Keyboard shortcuts in Excel 2010 Hide All This article describes what Key Tips are and how you can use them to access the ribbon. It also lists CTRL combination shortcut

More information

New Features in Microsoft Office 2007

New Features in Microsoft Office 2007 New Features in Microsoft Office 2007 TABLE OF CONTENTS The Microsoft Office Button... 2 The Quick Access Toolbar... 2 Adding buttons to the Quick Access Toolbar... 2 Removing buttons from the Quick Access

More information

Microsoft Power Point 2007 Study Guide PowerPoint The Microsoft Office Button The Quick Access Toolbar The Title Bar

Microsoft Power Point 2007 Study Guide PowerPoint The Microsoft Office Button The Quick Access Toolbar The Title Bar Microsoft Power Point 2007 Study Guide PowerPoint is a presentation software package. With PowerPoint, you can easily create slide shows. Trainers and other presenters use slide shows to illustrate their

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Windows 2000 Keyboard Shortcuts

Windows 2000 Keyboard Shortcuts ALT+letter key, where the key is the underlined letter in a menu cmnd ALT+ or CTRL+Z ALT+ENTER ALT+Shift+ENTER ALT+ENTER ALT+ESC ALT+Shift+ESC ALT+F4 ALT+HYPHEN ALT+M ALT+PRINTSCREEN ALT+Shift+ ALT+SPACEBAR

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

Basic Navigation. User Guide

Basic Navigation. User Guide Basic Navigation User Guide Campus Management Corporation Web Site http://www.campusmanagement.com/ E-mail Information: Support: E-mail Form on Web Site support@campusmgmt.com Phone Sales/Support: 561.999.9904

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial Microsoft Word 2010 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc.

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc. NDA-30141 ISSUE 1 STOCK # 200893 CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000 NEC America, Inc. LIABILITY DISCLAIMER NEC America, Inc. reserves the right to change the specifications,

More information

Microsoft Office PowerPoint 2013

Microsoft Office PowerPoint 2013 Microsoft Office PowerPoint 2013 Navigating the PowerPoint 2013 Environment The Ribbon: The ribbon is where you will access a majority of the commands you will use to create and develop your presentation.

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

Windows XP Introduction Revised November 2004

Windows XP Introduction Revised November 2004 Windows XP Introduction Revised November 2004 Sections: 1. The Windows Environment 2. Windows Tips 3. Shortcuts to Files and Folders 4. Favorite Windows keystrokes 5. Set Views for folders 6. Set View

More information

File Management With Windows Explorer

File Management With Windows Explorer File Management With Windows Explorer Preamble: After you have created and saved numerous files using various programs, file management, the process of organizing and keeping track of all your files, can

More information

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online Outlook Folders: All new messages are stored in Inbox unless rules are created. Stores copies of items you sent to others, by default Stores temporarily deleted items until you permanently delete or retrieve

More information

IBM Rational Developer for i. Maintain an ILE RPG application using Remote System Explorer Edit, Compile, and Debug

IBM Rational Developer for i. Maintain an ILE RPG application using Remote System Explorer Edit, Compile, and Debug IBM Rational Developer for i Maintain an ILE RPG application using Remote System Explorer Edit, Compile, and Debug Open Lab 430247 Using RSE 450153 Rational Developer for i V7.5 iv Maintain an ILE RPG

More information

Project Manager Editor & Debugger

Project Manager Editor & Debugger TM IDE for Microcontrollers Quick Start µvision2, the new IDE from Keil Software, combines Project Management, Source Code Editing, and Program Debugging in one powerful environment. This Quick Start guide

More information

Microsoft Outlook 2003 Keyboard Shortcuts

Microsoft Outlook 2003 Keyboard Shortcuts In the Help Pane F1 F6 Shift+ and and ALT+ ALT+ CTRL+SPACE CTRL+F1 Display the Help Pane. Switch between the Help Pane and the active application. Select the next item in the Help Pane. Select the previous

More information

Microsoft PowerPoint Tutorial

Microsoft PowerPoint Tutorial Microsoft PowerPoint Tutorial Contents Starting MS PowerPoint... 1 The MS PowerPoint Window... 2 Title Bar...2 Office Button...3 Saving Your Work... 3 For the first time... 3 While you work... 3 Backing

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

ZIMBRA LAYOUT. Keyboard Shortcuts Hitting G and the beginning letter of any of the tabs will instantly take you to that tab

ZIMBRA LAYOUT. Keyboard Shortcuts Hitting G and the beginning letter of any of the tabs will instantly take you to that tab TABS ZIMBRA LAYOUT Overview Pane TABS Mail Inbox, compose new Address Book contacts (university contacts do not show up in book; however, they will show up in search) Calendar appointments (can be shared)

More information

Basics of MS Word :: 137

Basics of MS Word :: 137 7 BASICS OF MS WORD 7.1 INTRODUCTION MS Word 2000 is an application program that allows you to create letters, reports, newsletters, tables, form letters, brochures, and Web pages. Using Word you can add

More information

Programming with the Dev C++ IDE

Programming with the Dev C++ IDE Programming with the Dev C++ IDE 1 Introduction to the IDE Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. As similar IDEs, it offers to the programmer

More information

How to Use Excel 2007

How to Use Excel 2007 How to Use Excel 2007 Table of Contents THE EXCEL ENVIRONMENT... 4 MOVE OR SCROLL THROUGH A WORKSHEET... 5 USE THE SCROLL BARS TO MOVE THROUGH A WORKSHEET... 5 USE THE ARROW KEYS TO MOVE THROUGH A WORKSHEET...

More information

Most of your tasks in Windows XP will involve working with information

Most of your tasks in Windows XP will involve working with information OFFICE 1 File Management Files and Folders Most of your tasks in Windows XP will involve working with information stored on your computer. This material briefly explains how information is stored in Windows

More information

Creating a Web Site with Publisher 2010

Creating a Web Site with Publisher 2010 Creating a Web Site with Publisher 2010 Information Technology Services Outreach and Distance Learning Technologies Copyright 2012 KSU Department of Information Technology Services This document may be

More information

The Basics of Microsoft Excel

The Basics of Microsoft Excel The Basics of Microsoft Excel Theresa A Scott, MS Biostatistician III Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt.edu Table of Contents 1 Introduction 1 1.1 Spreadsheet Basics..........................................

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

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

Microsoft Excel 2010. Understanding the Basics

Microsoft Excel 2010. Understanding the Basics Microsoft Excel 2010 Understanding the Basics Table of Contents Opening Excel 2010 2 Components of Excel 2 The Ribbon 3 o Contextual Tabs 3 o Dialog Box Launcher 4 o Quick Access Toolbar 4 Key Tips 5 The

More information

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003 In This Guide Microsoft PowerPoint 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free PowerPoint

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

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

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

ArchestrA Log Viewer User s Guide Invensys Systems, Inc.

ArchestrA Log Viewer User s Guide Invensys Systems, Inc. ArchestrA Log Viewer User s Guide Invensys Systems, Inc. Revision A Last Revision: 7/3/07 Copyright 2007 Invensys Systems, Inc. All Rights Reserved. All rights reserved. No part of this documentation shall

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in 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

Creating tables of contents and figures in Word 2013

Creating tables of contents and figures in Word 2013 Creating tables of contents and figures in Word 2013 Information Services Creating tables of contents and figures in Word 2013 This note shows you how to create a table of contents or a table of figures

More information

How to Use the Drawing Toolbar in Microsoft Word

How to Use the Drawing Toolbar in Microsoft Word How to Use the Drawing Toolbar in Microsoft Word The drawing toolbar allows you to quickly and easily label pictures (e.g., maps) in a MS Word file. You can add arrows, circle spots, or label with words.

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

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

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

Project 2013 Keyboard Shortcuts

Project 2013 Keyboard Shortcuts Project 2013 Keyboard Shortcuts Microsoft Office basics Keyboard access to the ribbon Alt. The KeyTips are displayed over each feature that is available in the current view. the letter that appears in

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

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

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

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

You can start almost every task you perform in QuickBooks by clicking something a

You can start almost every task you perform in QuickBooks by clicking something a appendix c s You can start almost every task you perform in QuickBooks by clicking something a menu item, a button in a toolbar or icon bar, or a link in one of the Centers or the Company Snapshot. But

More information

Using the SAS Enterprise Guide (Version 4.2)

Using the SAS Enterprise Guide (Version 4.2) 2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with

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

Adobe Conversion Settings in Word. Section 508: Why comply?

Adobe Conversion Settings in Word. Section 508: Why comply? It s the right thing to do: Adobe Conversion Settings in Word Section 508: Why comply? 11,400,000 people have visual conditions not correctible by glasses. 6,400,000 new cases of eye disease occur each

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

WinSCP: Secure File Transfer Using WinSCP for Secure File Transfer on Windows

WinSCP: Secure File Transfer Using WinSCP for Secure File Transfer on Windows WinSCP: Secure File Transfer Using WinSCP for Secure File Transfer on Windows Overview WinSCP is an SFTP (Secure File Transfer Protocol), FTP (File Transfer Protocol), and SCP (Secure Copy Protocol) application

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

A Guide to Using Banner

A Guide to Using Banner A Guide to Using Banner Banner Contents 07/23/09 Contents Learning the Basics... 4 Logging on to Banner... 4 Exiting Banner... 5 Using the Mouse and Keyboard... 6 The Main Menu... 7 Forms... 8 Menu Bar...

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

Archiving in Microsoft Outlook. This document looks at archiving and saving space in the Microsoft Outlook email program. INFORMATION SYSTEMS SERVICES

Archiving in Microsoft Outlook. This document looks at archiving and saving space in the Microsoft Outlook email program. INFORMATION SYSTEMS SERVICES INFORMATION SYSTEMS SERVICES Archiving in Microsoft Outlook This document looks at archiving and saving space in the Microsoft Outlook email program. AUTHOR: ISS DATE: December 2005 EDITION: 2.0 TUT 104

More information

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started Contents StrikeRisk v6.0 Introduction 1/1 1 Installing StrikeRisk System requirements Installing StrikeRisk Installation troubleshooting

More information

Outlook Tips & Tricks. Training For Current & New Employees

Outlook Tips & Tricks. Training For Current & New Employees Outlook Tips & Tricks Training For Current & New Employees The workshop will help build the necessary skills needed to begin using Microsoft Outlook 2010. The participant will learn how to create e-mail

More information

Handout: How to Use Excel 2010

Handout: How to Use Excel 2010 How to Use Excel 2010 Table of Contents THE EXCEL ENVIRONMENT... 4 MOVE OR SCROLL THROUGH A WORKSHEET... 5 USE THE SCROLL BARS TO MOVE THROUGH A WORKSHEET... 5 USE THE ARROW KEYS TO MOVE THROUGH A WORKSHEET...

More information

Microsoft Office Outlook 2013

Microsoft Office Outlook 2013 Microsoft Office Outlook 2013 Quick Start Card Outlook 2013 Home View The default view opens to the Mail Folder, Navigation Pane, the Inbox, To-Do Bar, Reading Pane and the Ribbon. The Home View provides

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

Inking in MS Office 2013

Inking in MS Office 2013 VIRGINIA TECH Inking in MS Office 2013 Getting Started Guide Instructional Technology Team, College of Engineering Last Updated: Fall 2013 Email tabletteam@vt.edu if you need additional assistance after

More information

File Management Commands in Windows 7

File Management Commands in Windows 7 This document is a quick tutorial showing the file management commands using Windows 7. Preparation: I need a set of files to work with. I will use the files in the File Management Homework.zip file. See

More information

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

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

More information

Microsoft PowerPoint 2013 Keyboard shortcuts

Microsoft PowerPoint 2013 Keyboard shortcuts Microsoft PowerPoint 2013 Keyboard shortcuts Online Help Keyboard Shortcuts for using the Help window The Help window provides access to all Office Help content. The Help window displays topics and other

More information

Microsoft Office Outlook 2010 Quick Reference Card

Microsoft Office Outlook 2010 Quick Reference Card Microsoft Office Outlook 2010 Quick Reference Card Outlook 2010 Home View The default view opens to the Mail Folder, Navigation Pane, the Inbox, To-Do Bar, Reading Pane and the Expanded Ribbon. The Home

More information