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

Size: px
Start display at page:

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

Transcription

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

2 Single Document Interface (SDI) An SDI application that consists of more than one form can begin with a startup form that directs the user to the other forms of the application. A form that s displayed from a startup form should contain a Close button rather than an Exit button to indicate that the button will close the form and not exit the application and close all open forms. By:MIT by 2

3 Single Document Interface (SDI) When the user clicks the shownewformbutton, the first statement creates a new instance of the newstudententry form. Then the Show method of the form is executed to load and display the form. By:MIT by 3

4 To add a Form title with counting By:MIT by 4

5 Creating Menus By:MIT by 5

6 MenuStrip Control To provide access to the functions of an application, you can add menus to a form. Menus sometimes duplicate the functionality that s already available from the buttons and other controls of a form, but they can also provide access to functions that aren t available anywhere else. 6

7 Adding Your Own Menus To add a menu item, click the box labeled Type Here and type the name of the menu. You will notice that as you type, another box will appear beside and below it so you can add more items. As an example, type File, Edit, and Help in the MenuStrip. To add submenus, click a menu item it will open up a container for all its submenus. You will also see a box that will allow you to insert sub menus. If you want to add a separator, type the character. You can even create submenus of submenus. You can nest and nest menus if you want to. A submenu which contains another submenu can be identified by the arrow at its right side. 7

8 Adding Standard Menus Click on the arrow button at the upper right side of the MenuStrip. Then choose Insert Standard Items. Visual Studio will fill the MenuStrip with standard menus such as Creating New files, Saving Files, Loading and many more. 8

9 Adding Shortcut Keys to a Menu Item If you want complex shortcut combinations, then we have to use the ShortcutKeys property. Select a menu item and then go to the Properties Window and find the ShortcutKeys property. Click the drop down arrow to show you a small window that allows you to choose the shortcut keys for the current menu item. 9

10 Adding Icons to Menu Items You can add images or icons at the left side of a menu item as seen in the standard menus. We use the Image property to do just that. Click the drop down button of the Image property in the Property Window. Choose which resource to use and then browse for the appropriate image. If the image is too large, then it will automatically be scaled based on the value of the ImageScaling property. 10

11 Multiple Document Interface (MDI) By:MIT by 11

12 MDIs If the application you are developing requires multiple instances of one or more forms, you may want to use Multiple Document Interface (MDI). You can create a parent form that acts as a container for all of the child forms. You can provide menu to make it easier to display and manage the child forms. By:MIT by 12

13 To change a form as MDI container Set these Property IsMdiContainer WindowState Value True Maximized To show an existing form (another form) under an MDI Double click the relevant menu and add the following code By:MIT by 13

14 Arranging child windows By:MIT by 14

15 To list windows under MDI Click on the MenuStrip. And set its MdiWindowListItem property. By:MIT by 15

16 Creating a simple login form By:MIT by 16

17 Passing login data between forms Step I: declare the variable in MDI Parent Step II: Pass the parameter in the Login form s OK click event By:MIT by 17

18 Passing login data between forms Step III: Instantiate MDI Parent with the value By:MIT by 18

19 To close all forms and MDI itself By:MIT by 19

20 Thank you By:MIT by 20

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

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

More information

Lesson 06 Arrays. MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL

Lesson 06 Arrays. MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Lesson 06 Arrays MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Array An array is a group of variables (called elements or components) containing

More information

Lesson 05 Methods. MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL

Lesson 05 Methods. MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Lesson 05 Methods MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Why Write Methods? Methods are commonly used to break a problem down into

More information

MIT Database Management Systems Lesson 03: Entity Relationship Diagrams

MIT Database Management Systems Lesson 03: Entity Relationship Diagrams MIT 22033 Database Management Systems Lesson 03: Entity Relationship Diagrams By S. Sabraz Nawaz Senior Lecturer in MIT, FMC, SEUSL & A.J.M.Hasmy FMC, SEUSL ER - Model The entity-relationship (ER) data

More information

7. Now, click the top menu, on the right side of Help, type "Windows". Implementing an MDI Form

7. Now, click the top menu, on the right side of Help, type Windows. Implementing an MDI Form Implementing an MDI Form The Multiple-Document Interface (MDI) is a specification that defines a user interface for applications that enable the user to work with more than one document at the same time

More information

Lesson 05: How to Insert, Update, and Delete Data. By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL

Lesson 05: How to Insert, Update, and Delete Data. By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL Lesson 05: How to Insert, Update, and Delete Data By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL The syntax of the INSERT statement INSERT [INTO] table_name [(column_list)] [DEFAULT] VALUES (expression_1

More information

Lesson 02 Data Types and Statements. MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL

Lesson 02 Data Types and Statements. MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Lesson 02 Data Types and Statements MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Topics Covered Statements Variables Data Types Arithmetic

More information

Location of menu elements

Location of menu elements E Creating Menus Appendix E C5779 39147 Page 1 07/10/06--JHR In Visual Basic 2005, you use a MenuStrip control to include one or more menus in an application. You instantiate a MenuStrip control using

More information

Programming with ADO.NET

Programming with ADO.NET Programming with ADO.NET The Data Cycle The overall task of working with data in an application can be broken down into several top-level processes. For example, before you display data to a user on a

More information

Lesson 02 Data Types and Statements. MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL

Lesson 02 Data Types and Statements. MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Lesson 02 Data Types and Statements MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL Topics Covered Statements Variables Constants Data Types

More information

MIT Database Management Systems Lesson 03: ER-to-Relational Mapping

MIT Database Management Systems Lesson 03: ER-to-Relational Mapping MIT 22033 Database Management Systems Lesson 03: ER-to-Relational Mapping By S. Sabraz Nawaz Senior Lecturer in MIT Department of Management and IT, SEUSL Chapter Outline ER-to-Relational Mapping Algorithm

More information

Getting Help in Microsoft Office

Getting Help in Microsoft Office LESSON 3 Getting Help in Microsoft Office In this lesson, you learn how to access and use the Help system in Microsoft Office. HELP: WHAT S AVAILABLE? Microsoft Office supplies a Help system that makes

More information

CIS 3260 Intro to Programming with C#

CIS 3260 Intro to Programming with C# Menus and Common Dialog Boxes McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Create menus and submenus for program control Display and use the Windows common dialog boxes McGraw-Hill

More information

Loops and Files. Chapter 04 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz

Loops and Files. Chapter 04 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Loops and Files Chapter 04 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Chapter Topics o The Increment and Decrement Operators o The while Loop o Shorthand Assignment Operators o The do-while

More information

MIT Database Management Systems Lesson 01: Introduction

MIT Database Management Systems Lesson 01: Introduction MIT 22033 Database Management Systems Lesson 01: Introduction By S. Sabraz Nawaz Senior Lecturer in MIT, FMC, SEUSL Learning Outcomes At the end of the module the student will be able to: Describe the

More information

MIT Database Management Systems

MIT Database Management Systems MIT 22033 Database Management Systems Lesson 04: How to retrieve data from two or more tables By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL How to code an inner join A join is used to combine columns

More information

Online Access: Login to The Media Audit

Online Access: Login to The Media Audit Online Access: Login to The Media Audit Using The Media Audit online has never been easier! Simply open your web browser and follow the quick instructions below. app.themediaaudit.com Open your favorite

More information

Chapter 14. Additional Topics in C# 2010 The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 14. Additional Topics in C# 2010 The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 14 Additional Topics in C# McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter Objectives - 1 Validate user input in the Validating event handler and display messages

More information

SDI & MDI Applications

SDI & MDI Applications SDI & MDI Applications Pemrograman Visual (TH22012 ) by Kartika Firdausy 081.328.718.768 kartikaf@indosat.net.id kartika@ee.uad.ac.id blog.uad.ac.id/kartikaf kartikaf.wordpress.com SDI and MDI Fundamentals

More information

DW DIGs Model Windows Tricks

DW DIGs Model Windows Tricks Window Menu 1. Window > Cascade Windows All open windows that aren't minimized at the bottom of the screen will be offset diagonally so you can see the title bar of each. 2. Window > Tile Windows All open

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager How to define model elements simply? In Sparx Systems Enterprise Architect, use the document-based Specification Manager to create elements

More information

Server Manager User and Permissions Setup

Server Manager User and Permissions Setup Login and Security Once you successfully create your company databases, the next step is to define the groups and users that can access the TRAVERSE data and the functionality they will have within the

More information

Managing Document Properties

Managing Document Properties PROCEDURES LESSON 20: CHANGING CASE AND MANAGING DOCUMENT PROPERTIES Using Uppercase Mode 1 Press the Caps Lock key 2 Type the desired text in all caps Showing Caps Lock on the Status Bar 1 Right-click

More information

Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Rapid Application Development By: S. Sabraz Nawaz

Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Rapid Application Development By: S. Sabraz Nawaz Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Rapid Application Development By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT Faculty of Management and Commerce Rapid Application

More information

Club Leader Access to 4-H Online

Club Leader Access to 4-H Online Club Leader Access to 4-H Online Login to 4-H Online Enrollment System Login to 4HOnline at https://mt.4honline.com. Click on the I have a profile button. Type in your family email and password. The role

More information

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

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

More information

Applications with Multiple Forms

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

More information

Database Management Systems MIT Lesson 01 - Introduction By S. Sabraz Nawaz

Database Management Systems MIT Lesson 01 - Introduction By S. Sabraz Nawaz Database Management Systems MIT 22033 Lesson 01 - Introduction By S. Sabraz Nawaz Introduction A database management system (DBMS) is a software package designed to create and maintain databases (examples?)

More information

pending Checking your just got easier. AGENT NET INFO MOBILE PENDING Android BlackBerry iphone View View View

pending Checking your just got easier. AGENT NET INFO MOBILE PENDING Android BlackBerry iphone View View View Checking your pending just got easier. AGENT NET INFO MOBILE PENDING 0912 View View iphone View Android BlackBerry Insurance products issued by: Monumental Life Insurance Company, Cedar Rapids, IA.. Accessing

More information

Decision Structures. Lesson 03 MIT 11053, Fundamentals of Programming

Decision Structures. Lesson 03 MIT 11053, Fundamentals of Programming Decision Structures Lesson 03 MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz M.Sc. in IS (SLIIT), PGD in IS (SLIIT), BBA (Hons.) Spl. In IS (SEUSL), MIEEE, Microsoft Certified Professional

More information

The Collections Workbench can be used to view and manage accounts. Click anywhere to continue. Copyright 2012 Pulse Systems, Inc.

The Collections Workbench can be used to view and manage accounts. Click anywhere to continue. Copyright 2012 Pulse Systems, Inc. The Collections Workbench can be used to view and manage accounts. Click anywhere to continue Copyright 2012 Pulse Systems, Inc. Page 1 of 28 To begin, it is assumed that you are logged in the PulsePro

More information

WINDOWS NT BASICS

WINDOWS NT BASICS WINDOWS NT BASICS 9.30.99 Windows NT Basics ABOUT UNIVERSITY TECHNOLOGY TRAINING CENTER The University Technology Training Center (UTTC) provides computer training services with a focus on helping University

More information

Verifying a Restore Repository

Verifying a Restore Repository Verifying a Restore Repository As a part of the Laserfiche backup verification process, you may be asked to verify the contents of a Laserfiche restore repository. Once a month, an archival copy of the

More information

About Course Builder

About Course Builder About Course Builder Page 1 of 14 Use Course Builder to interact with your course materials, learning experiences, and assessments in one consolidated interface so you can visualize and review your entire

More information

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

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

More information

Dreamweaver CS3. Chapter 1. Creating a Dreamweaver Web Page and Local Site. Part 1

Dreamweaver CS3. Chapter 1. Creating a Dreamweaver Web Page and Local Site. Part 1 Dreamweaver CS3 Chapter 1 Creating a Dreamweaver Web Page and Local Site Part 1 Starting Dreamweaver Click the Start button on the Windows taskbar, point to Adobe Dreamweaver CS3 on the Start menu or point

More information

Visual Studio.NET. Rex Jaeschke

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

More information

Programming with Microsoft Visual Basic.NET. Array. What have we learnt in last lesson? What is Array?

Programming with Microsoft Visual Basic.NET. Array. What have we learnt in last lesson? What is Array? What have we learnt in last lesson? Programming with Microsoft Visual Basic.NET Using Toolbar in Windows Form. Using Tab Control to separate information into different tab page Storage hierarchy information

More information

1. Adjusting Your Work Area

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

More information

Create a Scrapbook Page

Create a Scrapbook Page Create a Scrapbook Page You are now going to create a scrapbook page that will contain an arrangement of pictures and text. 1. Open Photoshop start > programs > Adobe Master Collection > Photoshop CS5

More information

1. Adjusting Your Work Area

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

More information

Easy Windows Working with Disks, Folders, - and Files

Easy Windows Working with Disks, Folders, - and Files Easy Windows 98-3 - Working with Disks, Folders, - and Files Page 1 of 11 Easy Windows 98-3 - Working with Disks, Folders, - and Files Task 1: Opening Folders Folders contain files, programs, or other

More information

Microsoft Visual Basic 2005 CHAPTER 6. Loop Structures

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

More information

Chapter 12: Using Controls

Chapter 12: Using Controls Chapter 12: Using Controls Using a LinkLabel LinkLabel Similar to a Label Provides the additional capability to link the user to other sources Such as Web pages or files Default event The method whose

More information

Client Care Desktop V4

Client Care Desktop V4 Client Care Desktop V4 V4.1 Quay Document Manager V4.1 Contents 1. LOCATIONS...3 1.1. Client... 3 1.2. Holdings... 4 1.3. Providers... 4 1.4. Contacts/Introducers... 5 1.5. Adviser... 5 2. ADDING EXISTING

More information

Engineering Innovation Center LabVIEW Basics

Engineering Innovation Center LabVIEW Basics Engineering Innovation Center LabVIEW Basics LabVIEW LabVIEW (Laboratory Virtual Instrument Engineering Workbench) is a graphical programming language that uses icons instead of lines of text to create

More information

Adding content to your Blackboard 9.1 class

Adding content to your Blackboard 9.1 class Adding content to your Blackboard 9.1 class There are quite a few options listed when you click the Build Content button in your class, but you ll probably only use a couple of them most of the time. Note

More information

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name.

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name. Excel 2010 Sorting Data Introduction Page 1 With over 17 billion cells in a single worksheet, Excel 2010 gives you the ability to work with an enormous amount of data. Arranging your data alphabetically,

More information

19. VB Project and Menu Design

19. VB Project and Menu Design 19. VB Project and Menu Design 19.1 Working with Projects As you develop an application, you work with a project to manage all the different files that make up the application. A VB project consists of:

More information

Program and Graphical User Interface Design

Program and Graphical User Interface Design CHAPTER 2 Program and Graphical User Interface Design OBJECTIVES You will have mastered the material in this chapter when you can: Open and close Visual Studio 2010 Create a Visual Basic 2010 Windows Application

More information

Windows Programming Using C#

Windows Programming Using C# Contents Windows Programming Using C# Menus TreeView TabControl MenuStrip 2 Main Menu Menus (mnu prefix) Menus provide groups of related commands for Windows applications Main menu is the control that

More information

GUIDE FOR STUDENTS AND PARENTS. An orange ring means you have an assignment.

GUIDE FOR STUDENTS AND PARENTS. An orange ring means you have an assignment. Odyssey Quick Start Launch Pad and Assignments below Portfolio and Reports on page 2 FAQs on page 5 For Parents on page 7 GUIDE FOR STUDENTS AND PARENTS Launch Pad and Assignments This icon opens your

More information

MOTOR Data Management System Users Guide

MOTOR Data Management System Users Guide MOTOR Data Management System Users Guide Version 1.0 November 24, 2003 Prepared by the Collaborative Studies Coordinating Center TABLE OF CONTENTS PAGE 1 MOTOR DMS... 4 2 OVERVIEW OF DATA COLLECTION...

More information

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password

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

More information

Using Open Workbench Version 1.1

Using Open Workbench Version 1.1 Version 1.1 Second Edition Title and Publication Number Title: Edition: Second Edition Printed: May 4, 2005 Copyright Copyright 1998-2005 Niku Corporation and third parties. All rights reserved. Trademarks

More information

1. Adapting Your Work Environment

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

More information

Lesson 01 Introduction

Lesson 01 Introduction Lesson 01 Introduction MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Lecturer in Management & IT M.Sc. In IS (SLIIT), PGD in IS (SLIIT), BBA (Hons.) Spl. in IS (SEUSL), MCP Programs Computer

More information

HUSD Technology Department

HUSD Technology Department HUSD Technology Department Windows 7 & Microsoft Office 2010 Starter Guide HUSD Technology Department Help Desk 765-5100 x5580 1 Windows 7 Guide As you startup your computer, you will notice many differences

More information

Client Care Desktop v4.3. Document Manager V4.3

Client Care Desktop v4.3. Document Manager V4.3 Client Care Desktop v4.3 Document Manager V4.3 Contents 1. LOCATIONS... 3 1.1. Client... 3 1.2. Enquiries... 4 1.3. Holdings... 4 1.4. Providers... 5 1.5. Contacts/Introducers... 6 1.6. Adviser... 6 2.

More information

5 Setting Preferences 15 Preferences 15 Configure Chart Colors 16

5 Setting Preferences 15 Preferences 15 Configure Chart Colors 16 CRITERION Vantage 3 Acquire Training Manual Contents 1 Introduction 3 Collecting Data 3 2 Starting the Program 3 Logging In and Logging Out 3 Logging In 3 Logging in as an Administrator 3 Logging in as

More information

User Guide. General Navigation

User Guide. General Navigation User Guide General Navigation Table of Contents INTRODUCTION 2 TECHNICAL REQUIREMENTS 3 Screen Display for Laptop 3 Screen Display for Desktop PC 3 NAVIGATION 4 Contact Us 4 Log Out 4 Menu > Sub Menu Display

More information

2 SELECTING AND ALIGNING

2 SELECTING AND ALIGNING 2 SELECTING AND ALIGNING Lesson overview In this lesson, you ll learn how to do the following: Differentiate between the various selection tools and employ different selection techniques. Recognize Smart

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Odyssey Quick Start. Quick Links: Launch Pad and Assignments Portfolio and Reports FAQs For Parents GUIDE FOR STUDENTS AND PARENTS

Odyssey Quick Start. Quick Links: Launch Pad and Assignments Portfolio and Reports FAQs For Parents GUIDE FOR STUDENTS AND PARENTS Odyssey Quick Start GUIDE FOR STUDENTS AND PARENTS Quick Links: Launch Pad and Assignments Portfolio and Reports FAQs For Parents Launch Pad and Assignments Click here to open your portfolio. Click this

More information

A Guided Tour of Doc-To-Help

A Guided Tour of Doc-To-Help A Guided Tour of Doc-To-Help ii Table of Contents Table of Contents...ii A Guided Tour of Doc-To-Help... 1 Converting Projects to Doc-To-Help 2005... 1 Using Microsoft Word... 10 Using HTML Source Documents...

More information

Visual Studio.NET. Although it is possible to program.net using only the command OVERVIEW OF VISUAL STUDIO.NET

Visual Studio.NET. Although it is possible to program.net using only the command OVERVIEW OF VISUAL STUDIO.NET Chapter. 03 9/17/01 6:08 PM Page 35 Visual Studio.NET T H R E E Although it is possible to program.net using only the command line compiler, it is much easier and more enjoyable to use Visual Studio.NET.

More information

LESSON 8 COPYING SELECTIONS

LESSON 8 COPYING SELECTIONS LESSON 8 COPYING SELECTIONS Digital Media I Susan M. Raymond West High School IN THIS TUTORIAL, YOU WILL: COPY AND MOVE SELECTIONS MAKE A COPY OF A SELECTION SO THAT IT OCCUPIES ITS OWN SEPARATE LAYER

More information

Instruction: Download and Install R and RStudio

Instruction: Download and Install R and RStudio 1 Instruction: Download and Install R and RStudio We will use a free statistical package R, and a free version of RStudio. Please refer to the following two steps to download both R and RStudio on your

More information

Locker v Contents. User Guide March 11, Viewing others public locker files Accessing Group Lockers Creating group locker areas Index

Locker v Contents. User Guide March 11, Viewing others public locker files Accessing Group Lockers Creating group locker areas Index Locker v8.3.0 User Guide March 11, 2008 Contents What Locker does Accessing the Locker tool Creating a folder Uploading a file Restricted file formats Creating a file Editing a file or folder Downloading

More information

You might think of Windows XP as a set of cool accessories, such as

You might think of Windows XP as a set of cool accessories, such as Controlling Applications under Windows You might think of Windows XP as a set of cool accessories, such as games, a calculator, and an address book, but Windows is first and foremost an operating system.

More information

Use Plug-ins. Use Plug-ins 2012

Use Plug-ins. Use Plug-ins 2012 Use Plug-ins Contents Introduction... 2 Plug-in Definition... 3 Use Plug-in Base Class or Interface... 3 Create Plug-in Definition... 3 Data-sharing between Plug-ins... 7 Plug-in Manager... 8 Derive a

More information

PowerPoint Essentials 1

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

More information

How to Use Internet Explorer 9

How to Use Internet Explorer 9 How to Use Internet Explorer 9 The Basics: 1. The Address Bar is located at the very top of your open webpage. This is where you will type in the address of the website you d like to visit. For example,

More information

Sema Foundation ICT Department. Lesson - 18

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

More information

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related PROCEDURES LESSON 8: MANAGING RELATIONSHIPS BETWEEN TABLES Renaming a Table 1 In the Navigation pane, right-click the table you want to rename 2 On the shortcut menu, click Rename 3 Type the new table

More information

Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Visual Programming By: S. Sabraz Nawaz

Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Visual Programming By: S. Sabraz Nawaz Introduction to.net Framework and Visual Studio 2013 IDE MIT 31043, Visual Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT Faculty of Management and Commerce South Eastern University

More information

AWC Connect. This document has instructions for: Installing the WatchGuard VPN Client and Connecting the VPN to Woodmark

AWC Connect. This document has instructions for: Installing the WatchGuard VPN Client and Connecting the VPN to Woodmark AWC Connect Use the AWC Connect VPN client to browse mapped network drives and navigate the intranet just as if you were sitting in your office. AWC Connect is for AWCissued Windows PCs only. This document

More information

Lesson 15 Working with Tables

Lesson 15 Working with Tables Working with Tables Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Create a table and insert text. Insert and delete rows and columns. Adjust column width and row height.

More information

Use this document to quickly review the steps needed to get the most out of your Gmail account.

Use this document to quickly review the steps needed to get the most out of your Gmail account. The How to Dos of Gmail Overview Page 1 Gmail offers tremendous functionality to make your email easier to use. This job aid provides the step-by-step instructions that are presented at the end of every

More information

How Does the PI make Pre Review ICF Changes?

How Does the PI make Pre Review ICF Changes? How Does the PI make Pre Review ICF Changes? 1 You, as PI of a study, have received notification from the IRB that Changes [are] required by IRB Staff. These changes include a request for a revision of

More information

Export Desktop Motion Analyzer profiles to Motion Analyzer Online: SolidWorks Motion Study Move Profile

Export Desktop Motion Analyzer profiles to Motion Analyzer Online: SolidWorks Motion Study Move Profile Export Desktop Motion Analyzer profiles to Motion Analyzer Online: SolidWorks Motion Study Move Profile For: Motion profiles with simple or static loads Splits motion profile into user defined number of

More information

Outlook Web App (Exchange 2010) User Guide Computer Training Solutions Version Revision Date

Outlook Web App (Exchange 2010) User Guide Computer Training Solutions Version Revision Date Outlook Web App (Exchange 2010) Computer Training Solutions Version 1.7 Revision Date 2014-December-1 Table of Contents QUICK REFERENCE... 2 OUTLOOK WEB APP URL... 2 MANITOBA EHEALTH SERVICE DESK... 2

More information

SharePoint 2010 Having A Uniform Look of Your Website

SharePoint 2010 Having A Uniform Look of Your Website SharePoint 2010 Having A Uniform Look of Your Website SharePoint 2010 Getting Started Here is your guide to get started on learning how to navigate and create sites. Logging in at school or home all it

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6 Content Author's Reference and Cookbook Rev. 080627 Sitecore CMS 6 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents Chapter

More information

SharePoint 2010 Instructions for Users

SharePoint 2010 Instructions for Users SharePoint 2010 Instructions for Users 1. Access your SharePoint Web site...2 2. Work with folders and documents in a Shared Documents Library...3 2.1 Edit a document...3 2.2 Create a New Document...3

More information

Design Guidelines: Windows. Computer users need to consult multiple sources rapidly. They require the adoption of multiplewindow display strategy.

Design Guidelines: Windows. Computer users need to consult multiple sources rapidly. They require the adoption of multiplewindow display strategy. Design Guidelines: Windows Computer users need to consult multiple sources rapidly. They require the adoption of multiplewindow display strategy. Design Challenge for Multiple- Window Strategy Offer users

More information

Step by step to getting R installed on your computer

Step by step to getting R installed on your computer Step by step to getting R installed on your computer 1. Go to the R-Project webpage (www.r-project.org) 2. Select the CRAN option under Download on the left hand side of the page: 3. On the CRAN Mirrors

More information

Project/Highway/Intersection/Evaluation Relationship

Project/Highway/Intersection/Evaluation Relationship Go back to: Table of Contents Go to the next lesson : IHSDM Workflow reviews the IHSDM Workflow. A set of IHSDM Project/Highways/Intersection/Evaluation is created for the IHSDM Pike case study. The Project/Highways/Intersection/Evaluation

More information

GUIDE FOR STUDENTS AND PARENTS. An orange ring means you have an assignment.

GUIDE FOR STUDENTS AND PARENTS. An orange ring means you have an assignment. Odyssey Quick Start Launch Pad and Assignments below Portfolio and Reports on page 2 FAQs on page 5 For Parents on page 8 GUIDE FOR STUDENTS AND PARENTS Launch Pad and Assignments This icon opens your

More information

Lesson 15 Working with Tables

Lesson 15 Working with Tables Working with Tables Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Create a table and insert text. Insert and delete rows and columns. Adjust column width and row height.

More information

Work Smart: Microsoft Office 2010 User Interface

Work Smart: Microsoft Office 2010 User Interface About the Office 2010 User Interface You can use this guide to learn how to use the new features of the Microsoft Office Ribbon. Topics in this guide include: What s New in the Office 2010 User Interface

More information

Managing Buttons. How to manage shortcut buttons with beas Usability Extension. Beas Tutorial. Boyum Solutions IT A/S

Managing Buttons. How to manage shortcut buttons with beas Usability Extension. Beas Tutorial. Boyum Solutions IT A/S Managing Buttons How to manage shortcut buttons with beas Usability Extension Boyum Solutions IT A/S Beas Tutorial TABLE OF CONTENTS 1. INTRODUCTION... 3 2. PROCESS... 3 2.1. Header... 6 2.2. Detailed

More information

VISION BASICS. Introduction (note materials updated for Vision 6.8.0)

VISION BASICS. Introduction (note materials updated for Vision 6.8.0) SAYRE AREA SCHOOL DISTRICT TECHNOLOGY TIPS VISION BASICS Introduction (note materials updated for Vision 6.8.0) Vision is a new software program for monitoring and controlling students computers in a lab

More information

Wise Technologies Ltd.,

Wise Technologies Ltd., User manual Wise Timetable online system Wise Technologies Ltd., In front of you is a short document for all the users and administrators of Wise Timetable, describing the important part of the whole system:

More information

BitLocker Drive Encryption Guide

BitLocker Drive Encryption Guide BitLocker Drive Encryption Guide How to create a virtual hard drive and encrypt it with BitLocker... 2 How to Mount and Open your VHD after you restart your Computer... 11 Encrypting removable drives (Flash

More information

Thermo Scientific. GRAMS Envision. Version 2.1. User Guide

Thermo Scientific. GRAMS Envision. Version 2.1. User Guide Thermo Scientific GRAMS Envision Version 2.1 User Guide 2013 Thermo Fisher Scientific Inc. All rights reserved. Thermo Fisher Scientific Inc. provides this document to its customers with a product purchase

More information

Using VO Windows in a.net Windows Form Application

Using VO Windows in a.net Windows Form Application Using VO Windows in a.net Windows Form Application Paul Piko, February 2010 This article shows how to use a VO datawindow in a Vulcan.NET Windows Form application. It makes use of the class WinFormVOWindowHost

More information

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

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

More information

Getting Started with. PowerPoint 2010

Getting Started with. PowerPoint 2010 Getting Started with 13 PowerPoint 2010 You can use PowerPoint to create presentations for almost any occasion, such as a business meeting, government forum, school project or lecture, church function,

More information

Files.Kennesaw.Edu. Kennesaw State University Information Technology Services. Introduces. Presented by the ITS Technology Outreach Team

Files.Kennesaw.Edu. Kennesaw State University Information Technology Services. Introduces. Presented by the ITS Technology Outreach Team Kennesaw State University Information Technology Services Introduces Files.Kennesaw.Edu Presented by the ITS Technology Outreach Team Last Updated 08/12/13 Powered by Xythos Copyright 2006, Xythos Software

More information