Chapter 12 Mouse and Keyboard

Size: px
Start display at page:

Download "Chapter 12 Mouse and Keyboard"

Transcription

1 CHAPTER 12 MOUSE AND KEYBOARD 1 Chapter 12 Mouse and Keyboard (Main Page) 12.1 MousePointer constants Demonstrating the MousePointer property Demonstrating mouse events Mouse button constants Determining which mouse button was pressed Constants associated with variable Shift Determining which combination of Shift, Ctrl or Alt was pressed Button and Shift bit fields Constants used with method Drag Demonstrating manual drag-and-drop Demonstrating automatic drag-and-drop Common key event constants Demonstrating key events Demonstrating property KeyPreview.

2 CHAPTER 12 MOUSE AND KEYBOARD 2 Constant Value Cursor Description vbdefault 0 Default cursor. Describes the default cursor for a form or control. vbarrow 1 Arrow cursor. Typically used to indicate that selections can be made. vbcrosshair 2 Crosshair cursor. Typically used to indicate precision. vbibeam 3 I-beam cursor. Typically used to indicate that text can be input. vbsizepointer 5 Sizing cursor. Typically used to indicate that resizing is allowed in all directions. vbsizenesw 6 North-East-South-West cursor. Typically used to indicate that resizing is allowed in this direction. vbsizens 7 North-South cursor. Typically used to indicate that resizing is allowed in this direction. vbsizenwse 8 North-West-South-East cursor. Typically used to indicate that resizing is allowed in this direction. vbsizewe 9 West-East cursor. Typically used to indicate that resizing is allowed in this direction. vbuparrow 10 Up arrow. vbhourglass 11 Hourglass cursor. Typically used to indicate that the program is busy performing some task. vbnodrop 12 No-drop cursor. Typically used to indicate that a drop operation is not permitted. vbarrowhourglass 13 Arrow hourglass cursor. Typically used to indicate that the program is busy performing some task and that the user can still make selections with the mouse pointer. vbarrowquestion 14 Arrow question mark cursor. Typically used to indicate help is available for a feature. vbsizeall 15 Size all directions cursor. vbcustom 99 Custom cursor. Typically used to display a non-visual Basic cursor). Fig MousePointer constants.

3 CHAPTER 12 MOUSE AND KEYBOARD 3 1 ' Fig ' Changing the mouse pointer 3 Option Explicit ' General declaration 4 5 Private Sub optcursor_click(index As Integer) 6 MousePointer = Index 7 End Sub Initial GUI at execution. GUI after user selects arrow question. Fig Demonstrating the MousePointer property. 1 ' Fig ' Demonstrating mouse events 3 Option Explicit ' General declaration 4 5 Private Sub Form_Load() 6 Call Randomize ' Randomize 7 End Sub 8 9 Private Sub cmdclear_click() 10 Call Cls ' Clear Form 11 End Sub Private Sub Form_Click() ' Randomly set Form ForeColor 16 Select Case (1 + Int(Rnd() * 4)) 17 Case 1 18 ForeColor = vbblack

4 CHAPTER 12 MOUSE AND KEYBOARD 4 19 Case 2 20 ForeColor = vbmagenta 21 Case 3 22 ForeColor = vbred 23 Case 4 24 ForeColor = vbblue 25 End Select End Sub Private Sub Form_DblClick() ' Randomly set Form BackColor 32 Select Case (1 + Int(Rnd() * 4)) 33 Case 1 34 BackColor = vbwhite 35 Case 2 36 BackColor = vbyellow Fig Demonstrating mouse events (part 1 of 3). 37 Case 3 38 BackColor = vbgreen 39 Case 4 40 BackColor = vbcyan 41 End Select ' Change chkmove BackColor to Form's BackColor 44 chkmove.backcolor = BackColor 45 End Sub Private Sub Form_MouseDown(Button As Integer, _ 48 Shift As Integer, X As Single, _ 49 Y As Single) CurrentX = X ' Set x coordinate 52 CurrentY = Y ' Set y coordinate 53 Print "MouseDown" 54 End Sub Private Sub Form_MouseUp(Button As Integer, _ 57 Shift As Integer, X As Single, _ 58 Y As Single) ' Reverse coordinates 61 CurrentX = Y 62 CurrentY = X 63 Print "MouseUp" 64 End Sub Private Sub Form_MouseMove(Button As Integer, _ 67 Shift As Integer, X As Single, _ 68 Y As Single) ' If checked enable printing operations 71 If chkmove.value = 1 Then 72 CurrentX = X 73 CurrentY = Y 74 Print "MouseMove" 75 End If 76

5 CHAPTER 12 MOUSE AND KEYBOARD 5 77 End Sub Fig Demonstrating mouse events (part 2 of 3). Initial GUI at execution. GUI after user has clicked mouse in several different locations. GUI after user has pressed Clear and then clicked Enable MouseMove and moved the mouse. Fig Demonstrating mouse events (part 3 of 3).

6 CHAPTER 12 MOUSE AND KEYBOARD 6. Constant Value Description vbrightbutton 1 The right mouse button. vbleftbutton 2 The left mouse button. vbmiddlebutton 4 The center mouse button. Fig Mouse button constants. 1 ' Fig ' Mouse buttons 3 Option Explicit ' General declaration 4 5 Private Sub Form_Load() 6 imgimage.picture = LoadPicture("d:\images\ch12\mouse0.gif") 7 End Sub 8 9 Private Sub Form_MouseDown(Button As Integer, _ 10 Shift As Integer, X As Single, _ 11 Y As Single) 12 Call SetPressedImage(Button) 13 End Sub Fig Determining which mouse button was pressed (part 1 of 3) Private Sub Form_MouseUp(Button As Integer, Shift As Integer, _ 16 X As Single, Y As Single) Call SetReleasedImage 19 End Sub Private Sub imgimage_mousedown(button As Integer, _ 22 Shift As Integer, _ 23 X As Single, Y As Single) 24 Call SetPressedImage(Button) 25 End Sub Private Sub imgimage_mouseup(button As Integer, _ 28 Shift As Integer, _ 29 X As Single, Y As Single) 30 Call SetReleasedImage 31 End Sub Private Sub SetPressedImage(b As Integer) 34 imgimage.picture = LoadPicture("d:\images\ch12\mouse" & _ 35 b & ".gif") 36 End Sub Private Sub SetReleasedImage() 39 imgimage.picture = LoadPicture("d:\images\ch12\mouse0.gif") 40 End Sub

7 CHAPTER 12 MOUSE AND KEYBOARD 7 Initial GUI at execution. GUI after user presses the left mouse button. Fig Determining which mouse button was pressed (part 2 of 3). GUI after the user presses the right mouse button. Fig Determining which mouse button was pressed (part 3 of 3). Constant Value Description vbshiftmask 1 Status of the Shift key. vbctrlmask 2 Status of the Ctrl key. vbaltmask 4 Status of the Alt key. Fig Constants associated with variable Shift.

8 CHAPTER 12 MOUSE AND KEYBOARD 8 1 ' Fig ' Mouse buttons 3 Option Explicit ' General declaration 4 5 Private Sub Form_Load() 6 imgimage.picture = LoadPicture("d:\images\ch12\mouse0.gif") 7 End Sub 8 9 Private Sub Form_MouseDown(Button As Integer, _ 10 Shift As Integer, x As Single, _ 11 Y As Single) Dim a As Integer, c As Integer, s As Integer a = Shift And vbaltmask ' Mask Alt bit 16 c = Shift And vbctrlmask ' Mask Ctrl bit 17 s = Shift And vbshiftmask ' Mask Shift bit If (a <> 0) Then ' Alt 20 lblkeys(a).backcolor = vbgreen 21 End If If (s <> 0) Then ' Shift 24 lblkeys(s).backcolor = vbgreen 25 End If If (c <> 0) Then ' Ctrl 28 lblkeys(c).backcolor = vbgreen 29 End If imgimage.picture = LoadPicture("d:\images\ch12\mouse" & _ 32 Button & ".gif") 33 End Sub Private Sub Form_MouseUp(Button As Integer, Shift As Integer, _ 36 x As Single, Y As Single) ' Change Label BackColors to Form's BackColor 39 lblkeys(1).backcolor = BackColor 40 lblkeys(2).backcolor = BackColor 41 lblkeys(4).backcolor = BackColor ' Load mouse image of unpressed buttons 44 imgimage.picture = LoadPicture("d:\images\ch12\mouse0.gif") 45 End Sub Fig Determining which combination of Shift, Ctrl or Alt was pressed (part 1 of 2).

9 CHAPTER 12 MOUSE AND KEYBOARD 9 Initial GUI at execution. GUI after user presses the left mouse button while Shift is held down. GUI after user presses the right mouse button while Ctrl is held down. Fig Determining which combination of Shift, Ctrl or Alt was pressed (part 2 of 2).

10 CHAPTER 12 MOUSE AND KEYBOARD 10 Button bit field... M R L Most significant bits Least significant bits Shift bit field... A C S Most significant bits Least significant bits Key M R L A C S Bit representing middle mouse button Bit representing right mouse button Bit representing left mouse button Bit representing Alt key Bit representing Ctrl key Bit representing Shift key Fig Button and Shift bit fields. Constant Value Description vbcanceldrag 0 Cancels drag-and-drop operation. Event procedure DragDrop is not called. vbbegindrag 1 Begins drag-and-drop operation. Event procedure DragDrop is called. vbenddrag 2 Terminates drag-and-drop operation. Event procedure DragDrop is called. Fig Constants used with method Drag. 1 ' Fig ' Demonstrating manual drag-and-drop 3 Option Explicit ' General declaration 4 Dim mcurrentcell As Integer ' General declaration 5 6 Private Sub Form_Load() 7 Dim x As Integer 8 9 mcurrentcell = 2 ' Lower left corner For x = 1 To If x Mod 2 Then 14 picsquare(x).picture = LoadPicture("d:\images\ch12\" & _ 15 "w_marble.jpg") 16 Else 17 picsquare(x).picture = LoadPicture("d:\images\ch12\" & _ 18 "b_marble.jpg") 19 End If Next x picsquare(2).picture = LoadPicture("d:\images\ch12\" & _

11 CHAPTER 12 MOUSE AND KEYBOARD "b_knight.jpg") 25 End Sub Private Sub picsquare_mousedown(index As Integer, _ 28 Button As Integer, _ 29 Shift As Integer, _ 30 x As Single, Y As Single) ' If on the PictureBox displaying the image 33 ' then enable dragging. 34 If Index = mcurrentcell Then 35 picsquare(mcurrentcell).drag vbbegindrag 36 End If End Sub Fig Demonstrating manual drag-and-drop (part 1 of 4) Private Sub picsquare_dragover(index As Integer, _ 41 Source As Control, _ 42 x As Single, Y As Single, _ 43 State As Integer) ' Display icon while dragging over a PictureBox 46 picsquare(index).dragicon = LoadPicture("d:\images" & _ 47 "\ch12\knight.cur") 48 End Sub Private Sub picsquare_dragdrop(index As Integer, _ 51 Source As Control, _ 52 x As Single, Y As Single) ' Draw image at new position 55 If Index Mod 2 Then 56 picsquare(index).picture = LoadPicture("d:\images\ch" & _ 57 "12\w_knight.jpg") 58 Else 59 picsquare(index).picture = LoadPicture("d:\images\ch" & _ 60 "12\b_knight.jpg") 61 End If ' Remove last image only if the drop is at 64 ' a different location. 65 If mcurrentcell <> Index Then 66 If Source.Index Mod 2 Then 67 Source.Picture = LoadPicture("d:\images\ch12" & _ 68 "\w_marble.jpg") 69 Else 70 Source.Picture = LoadPicture("d:\images\ch12" & _ 71 "\b_marble.jpg") 72 End If End If ' Update current image position 77 mcurrentcell = Index 78 End Sub Fig Demonstrating manual drag-and-drop (part 2 of 4).

12 CHAPTER 12 MOUSE AND KEYBOARD 12 Initial GUI at execution. GUI when the user is performing a drag operation. Note the change in the mouse pointer. Since a drop has not occurred, the original image is still visible. Fig Demonstrating manual drag-and-drop (part 3 of 4). GUI after user drops the knight. Fig Demonstrating manual drag-and-drop (part 4 of 4).

13 CHAPTER 12 MOUSE AND KEYBOARD 13 1 ' Fig ' Demonstrating Automatic drag-and-drop 3 Option Explicit ' General declaration 4 5 Private Sub Form_Load() 6 Dim a As Integer 7 8 ' Set all DragMode properties to Automatic 9 For a = cmdbutton.lbound To cmdbutton.ubound 10 cmdbutton(a).dragmode = 1 ' Automatic 11 Next a End Sub Private Sub Form_DragDrop(Source As Control, X As Single, _ 16 Y As Single) Dim w As Integer, h As Integer ' Center control on mouse pointer 21 w = X - Source.Width / 2 22 h = Y - Source.Height / ' Move button to location where drop occurs 25 Call Source.Move(w, h) 26 End Sub Initial GUI at execution. Fig Demonstrating automatic drag-and-drop (part 1 of 2).

14 CHAPTER 12 MOUSE AND KEYBOARD 14 GUI after user has dragged and dropped three buttons. A dragand-drop operation is occurring on a button. GUI after user has dragged and dropped all buttons. Fig Demonstrating automatic drag-and-drop (part 2 of 2). Constant ASCII value(s) Description vbkeya - vbkeyz A key through Z key. vbkeynumpad0 - vbkeynumpad Keypad numeric keys 0 through 9. vbkey0 - vbkey Numeric keys 0 through 9. vbkeyf1 - vbkeyf Function keys F1 through F16. vbkeydecimal 110 Decimal point key (Period key). vbkeyback 8 Backspace key. vbkeytab 9 Tab key. vbkeyreturn 13 Return key (or Enter key). vbkeyshift 16 Shift key. vbkeycontrol 17 Ctrl key. vbkeycapital 20 Caps Lock key. vbkeyescape 27 Escape key. vbkeyspace 32 Space bar. vbkeyinsert 45 Insert key. Fig Common key event constants.

15 CHAPTER 12 MOUSE AND KEYBOARD 15 Constant ASCII value(s) Description vbkeydelete 46 Delete key. Fig Common key event constants. 1 ' Fig ' Demonstrating KeyDown, KeyUp, and KeyPress 3 Option Explicit ' General declaration 4 Dim mtitlestring As String ' General declaration 5 6 Private Sub Form_Load() 7 ' Store Caption value for use in KeyPress 8 mtitlestring = Caption & Space$(5) 9 End Sub Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) ' Determine which, if any, of the Shift, Ctrl, 14 ' or Alt keys is pressed 15 Select Case Shift 16 Case vbshiftmask ' Shift 17 ForeColor = vbyellow 18 Case vbaltmask ' Alt 19 ForeColor = vbred 20 Case vbctrlmask ' Ctrl 21 ForeColor = vbgreen 22 Case vbshiftmask + vbaltmask ' Shift + Alt 23 ForeColor = vbblue Fig Demonstrating key events (part 1 of 3). 24 Case vbshiftmask + vbctrlmask ' Shift + Ctrl 25 ForeColor = vbmagenta 26 Case vbaltmask + vbctrlmask ' Alt + Ctrl 27 ForeColor = vbcyan 28 Case vbaltmask + vbctrlmask + vbshiftmask ' All three 29 Call Cls 30 End Select ' Test for letter key 33 If KeyCode >= vbkeya And KeyCode <= vbkeyz Then 34 Print Chr$(KeyCode); ' Print the character 35 ElseIf KeyCode = vbkeyreturn Then ' Return key 36 Print ' Print on next line 37 End If End Sub Private Sub Form_KeyPress(KeyAscii As Integer) 42 ' Update title bar to display the key pressed 43 Caption = mtitlestring & "(" & Chr$(KeyAscii) & ")" 44 End Sub Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer) 47 ' When key is released, change ForeColor to black 48 ForeColor = vbblack 49 End Sub

16 CHAPTER 12 MOUSE AND KEYBOARD 16 Initial GUI at execution. Fig Demonstrating key events (part 2 of 3). GUI after user has typed text. GUI after user has held Shift, Ctrl and Alt simultaneously to clear the form. Fig Demonstrating key events (part 2 of 2).

17 CHAPTER 12 MOUSE AND KEYBOARD 17 1 ' Fig ' Demonstrating the KeyPreview property. 3 Option Explicit ' General declaration 4 5 Private Sub Form_Load() 6 Call Randomize 7 8 ' Allow Form to get key events first 9 KeyPreview = True 10 End Sub Private Sub Form_KeyPress(KeyAscii As Integer) ' Only allow numeric keys 15 If KeyAscii >= vbkey0 And KeyAscii <= vbkey9 Then 16 txtinput.text = txtinput.text & Chr$(KeyAscii) 17 End If End Sub Private Sub txtinput_keypress(keyascii As Integer) 22 KeyAscii = 0 ' Disable event handling 23 End Sub Private Sub txtinput_keyup(keycode As Integer, Shift As Integer) Select Case Int(Rnd() * 3) 28 Case 0 29 txtinput.backcolor = vbyellow 30 Case 1 31 txtinput.backcolor = vbcyan 32 Case 2 33 txtinput.backcolor = vbred 34 End Select End Sub Initial GUI at execution. GUI after user enters a series of numbers. Fig Demonstrating property KeyPreview.

Visual Basic and Databases

Visual Basic and Databases 1-1 1. Introducing Preview In this first chapter, we will do a quick overview of what the course entails. We will discuss what you need to complete the course. We ll take a brief look at what databases

More information

Lab 7 Keyboard Event Handling Mouse Event Handling

Lab 7 Keyboard Event Handling Mouse Event Handling Lab 7 Keyboard Event Handling Mouse Event Handling Keyboard Event Handling This section explains how to handle key events. Key events are generated when keys on the keyboard are pressed and released. These

More information

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

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

More information

AODA Mouse Pointer Visibility

AODA Mouse Pointer Visibility AODA Mouse Pointer Visibility Mouse Pointer Visibility Helpful if you have trouble viewing the mouse pointer. Microsoft Windows based computers. Windows XP Find the pointer 1. Click the Start button or

More information

Mouse and Keyboard Skills

Mouse and Keyboard Skills OCL/ar Mouse and Keyboard Skills Page 1 of 8 Mouse and Keyboard Skills In every computer application (program), you have to tell the computer what you want it to do: you do this with either the mouse or

More information

Introduction to Microsoft Access and Visual Basic for Applications

Introduction to Microsoft Access and Visual Basic for Applications Lesson 1: Introduction to MS Access and VBA Introduction to Microsoft Access and Visual Basic for Applications Introduction to Databases and Microsoft Access A database is a collection of information stored

More information

Getting Started on the Computer With Mouseaerobics! Windows XP

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

More information

Introduction to Computers: Session 3 Files, Folders and Windows

Introduction to Computers: Session 3 Files, Folders and Windows Introduction to Computers: Session 3 Files, Folders and Windows Files and folders Files are documents you create using a computer program. For example, this document is a file, made with a program called

More information

Everything you wanted to know about Visual Basic 6 Colors

Everything you wanted to know about Visual Basic 6 Colors Everything you wanted to know about Visual Basic 6 Colors The topic of beautifying your Visual Basic program is always a popular one in my classes. If you are like most of my Visual Basic students, right

More information

Logbook Entry Creator Program

Logbook Entry Creator Program Aircraft Maintenance Logbook Entries Made Easy Logbook Entry Creator Program Instruction Manual www.ronsaviationsoftware.com Rons Aviation Software V1.2 The log book entry creator program is designed to

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

Changing How the Mouse Works in Windows 7

Changing How the Mouse Works in Windows 7 Changing How the Mouse Works in Windows 7 Mada Assistive Technology Center Tel: 00 974 44594050 Fax: 00 974 44594051 Email: [email protected] Pen Introduction There are several ways to adjust the mouse

More information

Introduction to Visual Basic and Visual C++ Introduction to Control. TextBox Control. Control Properties. Lesson 5

Introduction to Visual Basic and Visual C++ Introduction to Control. TextBox Control. Control Properties. Lesson 5 Introduction to Visual Basic and Visual C++ Introduction to Control Lesson 5 TextBox, PictureBox, Label, Button, ListBox, ComboBox, Checkbox, Radio Button I154-1-A A @ Peter Lo 2010 1 I154-1-A A @ Peter

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

Windows 8.1 Tips and Tricks

Windows 8.1 Tips and Tricks Windows 8.1 Tips and Tricks Table of Contents Tiles... 2 Removing, Resizing and Moving Existing Tiles... 2 Adding New Tiles... 2 Returning to the Start Screen (Charms)... 3 The Search Feature... 3 Switching

More information

Learn Visual Basic 6.0

Learn Visual Basic 6.0 i Course Notes for: Learn Visual Basic 6.0 Lou Tylee, 1998 KIDware 15600 NE 8 th, Suite B1-314 Bellevue, WA 98008 (206) 721-2556 FAX (425) 746-4655 ii Learn Visual Basic 6.0 Notice These notes were developed

More information

Introduction to Computers

Introduction to Computers Introduction to Computers Parts of a computer Monitor CPU 3 Keyboard 3 4 4 Mouse 3 4 Monitor The monitor displays the content and operations of the computer. It is the visual display of what the computer

More information

Windows: File Management. Lesson Notes Author: Pamela Schmidt

Windows: File Management. Lesson Notes Author: Pamela Schmidt Lesson Notes Author: Pamela Schmidt Task Bar Properties One way to change the Task Bar Properties is to right click on the task bar. This will bring up the Task Bar Shortcut Menu. Choose Properties off

More information

Using Report Writer. Introduction

Using Report Writer. Introduction Solutions Conference Spring 2015 www.manersolutions.com (517) 323 7500 Using Report Writer Matt Mason Introduction Report Writer one of many reporting tools Best used for modifying existing reports Don

More information

How to make a line graph using Excel 2007

How to make a line graph using Excel 2007 How to make a line graph using Excel 2007 Format your data sheet Make sure you have a title and each column of data has a title. If you are entering data by hand, use time or the independent variable in

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

CAPITAL V8. Capital Business Software Tutorial Series. Introduction to Capital Business Manager V8 User Interface 1.2

CAPITAL V8. Capital Business Software Tutorial Series. Introduction to Capital Business Manager V8 User Interface 1.2 CAPITAL V8 Capital Business Software Tutorial Series Introduction to Capital Business Manager V8 User Interface 1.2 C A P I T A L O F F I C E B U S I N E S S S O F T W A R E Capital Business Software Tutorial

More information

Quick Guide. pdoc Forms Designer. Copyright Topaz Systems Inc. All rights reserved.

Quick Guide. pdoc Forms Designer. Copyright Topaz Systems Inc. All rights reserved. Quick Guide pdoc Forms Designer Copyright Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal. Table of Contents Overview... 3 pdoc

More information

Steps to Create a Database

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

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8.1 INTRODUCTION Forms are very powerful tool embedded in almost all the Database Management System. It provides the basic means for inputting data for

More information

Interaction: Mouse and Keyboard DECO1012

Interaction: Mouse and Keyboard DECO1012 Interaction: Mouse and Keyboard DECO1012 Interaction Design Interaction Design is the research and development of the ways that humans and computers interact. It includes the research and development of

More information

How to set up a database in Microsoft Access

How to set up a database in Microsoft Access Contents Contents... 1 How to set up a database in Microsoft Access... 1 Creating a new database... 3 Enter field names and select data types... 4 Format date fields: how do you want fields with date data

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

Access 2010: The Navigation Pane

Access 2010: The Navigation Pane Access 2010: The Navigation Pane Table of Contents OVERVIEW... 1 BEFORE YOU BEGIN... 2 ADJUSTING THE NAVIGATION PANE... 3 USING DATABASE OBJECTS... 3 CUSTOMIZE THE NAVIGATION PANE... 3 DISPLAY AND SORT

More information

Creating Fill-able Forms using Acrobat 8.0: Part 1

Creating Fill-able Forms using Acrobat 8.0: Part 1 Creating Fill-able Forms using Acrobat 8.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then

More information

Basic Computer Skills for Beginners. Mesa Regional Family History Center

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

More information

ZebraDesigner Pro. User Guide. 13857L-003 Rev. A

ZebraDesigner Pro. User Guide. 13857L-003 Rev. A ZebraDesigner Pro User Guide 13857L-003 Rev. A 2 2011 ZIH Corp. The copyrights in this manual and the software and/or firmware in the printer described therein are owned by ZIH Corp. and Zebra s licensors.

More information

Using Clicker 5. Hide/View Explorer. Go to the Home Grid. Create Grids. Folders, Grids, and Files. Navigation Tools

Using Clicker 5. Hide/View Explorer. Go to the Home Grid. Create Grids. Folders, Grids, and Files. Navigation Tools Using Clicker 5 Mouse and Keyboard Functions in Clicker Grids A two-button mouse may be used to control access various features of the Clicker program. This table shows the basic uses of mouse clicks with

More information

How to Edit an Email. Here are some of the things you can do to customize your email:

How to Edit an Email. Here are some of the things you can do to customize your email: How to Edit an Email Editing a new email created during the Create an Email wizard or editing an existing email in the Edit Email section of the Manage Emails tab is easy, using editing tools you re probably

More information

Creating tables in Microsoft Access 2007

Creating tables in Microsoft Access 2007 Platform: Windows PC Ref no: USER 164 Date: 25 th October 2007 Version: 1 Authors: D.R.Sheward, C.L.Napier Creating tables in Microsoft Access 2007 The aim of this guide is to provide information on using

More information

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

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

More information

Inserting Graphics into Grant Applications & Other Word Documents

Inserting Graphics into Grant Applications & Other Word Documents Merle Rosenzweig, [email protected] Inserting Graphics into Grant Applications & Other Word Documents ABOUT This document offers instruction on the efficient and proper placement of images, charts, and

More information

Chapter 9 Input/Output Devices

Chapter 9 Input/Output Devices Chapter 9 Input/Output Devices Contents: I. Introduction II. Input Devices a. Keyboard,mouse,joystick,scanners,digital camera, bar code reader, touch Sreeen,Speech input device (microphone) III. Output

More information

Creating a Database in Access

Creating a Database in Access Creating a Database in Access Microsoft Access is a database application. A database is collection of records and files organized for a particular purpose. For example, you could use a database to store

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

Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1

Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1 Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1 Are the themes displayed in a specific order? (PPT 6) Yes. They are arranged in alphabetical order running from left to right. If you point

More information

File Management in Windows Explorer

File Management in Windows Explorer File Management in Windows Explorer Introduction Windows currently uses two programs to accomplish file management on your computer. Windows Explorer My Computer Both programs can be used to accomplish,

More information

Keyboard Shortcuts Instead of the Mouse NOTES

Keyboard Shortcuts Instead of the Mouse NOTES Keyboard Shortcuts Instead of the Mouse Tape 1--4:00 RADAR is a windows based product. As such, it is designed to operate with a mouse. However, you can also use the keyboard to activate the commands in

More information

Creating and Viewing Task Dependencies between Multiple Projects using Microsoft Project

Creating and Viewing Task Dependencies between Multiple Projects using Microsoft Project Creating and Viewing Task Dependencies between Multiple Projects using Microsoft Project Preliminary 1. You must have Microsoft Project 2003 or higher installed to complete these procedures. 2. If necessary,

More information

Employee Appointment Books. User s Manual

Employee Appointment Books. User s Manual Employee Appointment Books User s Manual Employee Appointment Books Health District Information System HDIS (Windows Ver. 4.0 ) Copyright 1998 by CHC Software, Inc All Rights Reserved CHC Software, Inc.

More information

Microsoft Excel 2013: Headers and Footers

Microsoft Excel 2013: Headers and Footers Microsoft Excel 2013: Headers and Footers You can add headers or footers at the top or bottom of a printed worksheet. For example, you might create a footer that has page numbers, along with the date and

More information

Task Card #2 SMART Board: Notebook

Task Card #2 SMART Board: Notebook Task Card #2 SMART Board: Notebook Objectives: Participants will learn how to utilize the SMART Notebook. Table of Contents: Launching The SMART Notebook Page 1 Entering Text Page 1 Top Toolbar Page 2

More information

Creating Basic HTML Forms in Microsoft FrontPage

Creating Basic HTML Forms in Microsoft FrontPage Creating Basic HTML Forms in Microsoft FrontPage Computer Services Missouri State University http://computerservices.missouristate.edu 901 S. National Springfield, MO 65804 Revised: June 2005 DOC090: Creating

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 [email protected] if you need additional assistance after

More information

Windows Basics. Developed by: D. Cook

Windows Basics. Developed by: D. Cook Windows Basics Developed by: D. Cook User Interface Hardware and Software Monitor Keyboard Mouse User friendly vs. MS-DOS GUI (graphical user interface) Launching Windows 2000 (XP) CTRL-ALT-DEL Desktop

More information

Microsoft Word Track Changes

Microsoft Word Track Changes Microsoft Word Track Changes This document is provided for your information only. You SHOULD NOT upload a document into imedris that contains tracked changes. You can choose to use track changes for your

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

Wincopy Screen Capture

Wincopy Screen Capture Wincopy Screen Capture Version 4.0 User Guide March 26, 2008 Please visit www.informatik.com for the latest version of the software. Table of Contents General...3 Capture...3 Capture a Rectangle...3 Capture

More information

Shutting down / Rebooting Small Business Server 2003 Version 1.00

Shutting down / Rebooting Small Business Server 2003 Version 1.00 Shutting down / Rebooting Small Business Server 2003 Version 1.00 Need to Know TM It may be necessary at some stage of the life of Small Business Server 2003 that it be shutdown or rebooted. In many cases

More information

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by internal auditors around the world in their day-to-day

More information

Camtasia Recording Settings

Camtasia Recording Settings Camtasia Recording Settings To Capture Video Step 1: Resolution and Recording Area In the select area section, you can choose either to record the full screen or a custom screen size. Select the dropdown

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

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

Managing Your Desktop with Exposé, Spaces, and Other Tools

Managing Your Desktop with Exposé, Spaces, and Other Tools CHAPTER Managing Your Desktop with Exposé, Spaces, and Other Tools In this chapter Taking Control of Your Desktop 266 Managing Open Windows with Exposé 266 Creating, Using, and Managing Spaces 269 Mac

More information

ACS Version 10.6 - Check Layout Design

ACS Version 10.6 - Check Layout Design ACS Version 10.6 - Check Layout Design Table Of Contents 1. Check Designer... 1 About the Check Design Feature... 1 Selecting a Check Template... 2 Adding a Check Template... 2 Modify a Check Template...

More information

Event Record Monitoring and Analysis Software. Software Rev. 3.0 and Up. User s Guide

Event Record Monitoring and Analysis Software. Software Rev. 3.0 and Up. User s Guide Event Record Monitoring and Analysis Software Software Rev. 3.0 and Up User s Guide 2 Contents Contents Chapter 1: About ERMAWin 4 Chapter 2: Overview 5 About this Manual 5 System Requirements 5 Installing

More information

ACC New Injury Claim Form User Guide for My Practice users

ACC New Injury Claim Form User Guide for My Practice users ACC New Injury Claim Form User Guide for My Practice users Introduction This document outlines how to use our new web served ACC claim form that integrates to My Practice. We ll continue to develop the

More information

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

Solar-Generation Data Visualization Software Festa Operation Manual

Solar-Generation Data Visualization Software Festa Operation Manual Solar-Generation Data Visualization Software Festa Operation Manual Please be advised that this operation manual is subject to change without notice. FL-003 CONTENTS INTRODUCTION Chapter1: Basic Operations

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

Excel 2007/2010 for Researchers. Jamie DeCoster Institute for Social Science Research University of Alabama. September 7, 2010

Excel 2007/2010 for Researchers. Jamie DeCoster Institute for Social Science Research University of Alabama. September 7, 2010 Excel 2007/2010 for Researchers Jamie DeCoster Institute for Social Science Research University of Alabama September 7, 2010 I d like to thank Joe Chandler for comments made on an earlier version of these

More information

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

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

More information

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008 Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD

More information

Windows Movie Maker 2012

Windows Movie Maker 2012 Windows Movie Maker 2012 Open Windows Movie Maker A shortcut for Movie Maker should be on the desktop, but if it is not, you can search for the program by touching the right edge of the screen and swiping

More information

Creating A Drip Campaign

Creating A Drip Campaign Downloading and Uploading the ecards 1. Login to Elevated Network at elevatednetwork.com 2. Click on the My Rancon from Dashboard Creating A Drip Campaign 3. Login to My Rancon and click on Marketing ->

More information

CATIA Basic Concepts TABLE OF CONTENTS

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

More information

Creating Calculated Fields in Access Queries and Reports

Creating Calculated Fields in Access Queries and Reports Creating Calculated Fields in Access Queries and Reports Access 2000 has a tool called the Expression Builder that makes it relatively easy to create new fields that calculate other existing numeric fields

More information

Text Basics. Introduction

Text Basics. Introduction Text Basics Introduction PowerPoint includes all the features you need to produce professionallooking presentations. When you create a PowerPoint presentation, it is made up of a series of slides. The

More information

13-1. This chapter explains how to use different objects.

13-1. This chapter explains how to use different objects. 13-1 13.Objects This chapter explains how to use different objects. 13.1. Bit Lamp... 13-3 13.2. Word Lamp... 13-5 13.3. Set Bit... 13-9 13.4. Set Word... 13-11 13.5. Function Key... 13-18 13.6. Toggle

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

Division of School Facilities OUTLOOK WEB ACCESS

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

More information

PowerPoint 2013: Basic Skills

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

More information

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

A guide to sorting, deleting, archiving and moving emails in Outlook 2010

A guide to sorting, deleting, archiving and moving emails in Outlook 2010 A guide to sorting, deleting, archiving and moving emails in Outlook 2010 This guide will show you how to Archive your emails in Outlook 2010. In preparation for Archiving, the guide will also show you

More information

Chapter 9 Slide Shows

Chapter 9 Slide Shows Impress Guide Chapter 9 Slide Shows Transitions, animations, and more Copyright This document is Copyright 2007 2013 by its contributors as listed below. You may distribute it and/or modify it under the

More information

Chapter 15 Using Forms in Writer

Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify

More information

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

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

More information

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

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

More information

Microsoft PowerPoint 2008

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

More information

Getting Started Guide. Chapter 11 Graphics, the Gallery, and Fontwork

Getting Started Guide. Chapter 11 Graphics, the Gallery, and Fontwork Getting Started Guide Chapter 11 Graphics, the Gallery, and Fontwork Copyright This document is Copyright 2010 2014 by the LibreOffice Documentation Team. Contributors are listed below. You may distribute

More information

Customization Manager in Microsoft Dynamics SL 7.0

Customization Manager in Microsoft Dynamics SL 7.0 Customization Manager in Microsoft Dynamics SL 7.0 8965: Customization Manager in Microsoft Dynamics SL 7.0 (1 Day) About this Course This one-day course is designed to give individuals a comprehensive

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

NiceLabel Designer Standard User Guide

NiceLabel Designer Standard User Guide NiceLabel Designer Standard User Guide English Edition Rev-1112 2012 Euro Plus d.o.o. All rights reserved. Euro Plus d.o.o. Poslovna cona A 2 SI-4208 Šenčur, Slovenia tel.: +386 4 280 50 00 fax: +386 4

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

BUILDING APPLICATIONS USING C# AND.NET FRAMEWORK (OBJECT-ORIENTED PROGRAMMING, X428.6)

BUILDING APPLICATIONS USING C# AND.NET FRAMEWORK (OBJECT-ORIENTED PROGRAMMING, X428.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Class 9 Professional Program: Data Administration and Management BUILDING APPLICATIONS USING C# AND.NET FRAMEWORK (OBJECT-ORIENTED

More information

The very basic basics of PowerPoint XP

The very basic basics of PowerPoint XP The very basic basics of PowerPoint XP TO START The above window automatically shows when you first start PowerPoint. At this point, there are several options to consider when you start: 1) Do you want

More information

Computer Basic Skills

Computer Basic Skills We use a conversational and non-technical way to introduce the introductory skills that you will need to develop in order to become comfortable with accessing and using computer programs. We will concentrate

More information

LabVIEW Day 1 Basics. Vern Lindberg. 1 The Look of LabVIEW

LabVIEW Day 1 Basics. Vern Lindberg. 1 The Look of LabVIEW LabVIEW Day 1 Basics Vern Lindberg LabVIEW first shipped in 1986, with very basic objects in place. As it has grown (currently to Version 10.0) higher level objects such as Express VIs have entered, additional

More information

Microsoft Excel 2010 Linking Worksheets and Workbooks

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

More information

Access Part 2 - Design

Access Part 2 - Design Access Part 2 - Design The Database Design Process It is important to remember that creating a database is an iterative process. After the database is created and you and others begin to use it there will

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field.

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field. Adobe Acrobat Professional X Part 3 - Creating Fillable Forms Preparing the Form Create the form in Word, including underlines, images and any other text you would like showing on the form. Convert the

More information