Hands-On Lab. Getting Started with Office 2010 Development. Lab version: Last updated: 2/23/2011

Size: px
Start display at page:

Download "Hands-On Lab. Getting Started with Office 2010 Development. Lab version: Last updated: 2/23/2011"

Transcription

1 Hands-On Lab Getting Started with Office 2010 Development Lab version: Last updated: 2/23/2011

2 CONTENTS OVERVIEW... 3 Starting Materials 3 EXERCISE 1: CUSTOMIZING THE OFFICE RIBBON IN OFFICE... 4 Task 1 Add items to an existing ribbon... 4 Exercise 1 Verification... 6 EXERCISE 2: BUILDING A WORD 2010 ADD-IN... 7 Task 1 Create a new Word 2010 Addin... 7 EXERCISE 3: USING THE VISUAL STUDIO 2010 RIBBON DESIGNER Task 1 Create a new Ribbon Exercise 3 Verification SUMMARY APPENDIX No Items 16

3 Overview In this lab exercise, you will build a small add-in for Word You will make use of the data-binding capabilities of WPF combined with the SharePoint Client API. You will make use of new C#\Visual Basic language features to make calls into the object model easier. Objectives In this lab you will: Learn to customize the Office ribbon within Office Learn to build and debug a simple Word 2010 Add-in Learn to add a ribbon to your add-in using the ribbon designer System Requirements You must have the following items to complete this lab: Microsoft Windows Vista SP1 or Microsoft Windows Server 2008 (64-bit) Microsoft Office Professional Plus 2010 (32-bit or 64-bit) Microsoft Visual Studio 2010 Exercises This Hands-On Lab is comprised of the following exercises: 1. Customizing the Office Ribbon in Office 2. Building a Word 2010 Add-in 3. Using the Visual Studio 2010 Ribbon designer Estimated time to complete this lab: 30 minutes. Starting Materials This Hands-On Lab includes the following starting materials. Visual Studio solutions. The lab provides a Source folder. The lab instructions assume that you installed the training kit to the default location, C:\Office2010DeveloperTrainingKit\.

4 Note: Inside the lab s Source folder, you will find a Solution folder containing an end solution with the completed lab exercise. Exercise 1: Customizing the Office Ribbon in Office In this exercise you will use the built in ribbon customization functionality to build your own ribbon. Task 1 Add items to an existing ribbon In this task, you will extend the existing Home ribbon by adding Document View controls and a custom macro button. 1. In Word 2010, add Document Views to the View ribbon tab a. Open Office Word 2010 b. Right click the Home ribbon tab and select Customize the ribbon c. In the Word Options dialog, select All Tabs from the Choose commands from drop down list d. Expand the View node in the left hand side tree view e. Drag the Document Views node into the right hand side tree view inside the Home item Figure 1 Customized Ribbon

5 f. Click OK to close the dialog 2. Create a new Macro to generate random text. a. Switch to the View ribbon tab b. Click the Macros -> Record Macro button c. In the Record Macro dialog box, name the macro LoremIpsum. d. Choose Document1 (document) in the Store macro in drop down list e. Click OK to start recording f. Type the following into the document but do not hit the Enter key Word =lorem(3,3) g. In the Macros ribbon button, choose Stop Recording 3. Attach the new Macro to a ribbon button a. Right click the ribbon and select Customize the ribbon b. Select Macros in the Choose command from drop down list c. Select Home in the right side tree view and click New Group d. Rename New Group to Custom Macros using the Rename button e. Drag the Project.NewMacros.LoremIpsum item into the new group Figure 2 Customized Ribbon with Macro

6 f. Rename the new macro button Lorem Ipsum g. Click OK to save the changes Exercise 1 Verification In order to verify that you have correctly performed all steps of exercise 1, proceed as follows: Test the Macro Test your modifications to verify the Document View group and the new Macro buttons are visible on the ribbon in Word Switch to the Home ribbon tab and verify the first group is Document Views 2. Find the Lorem Ipsum button and click it to verify it is working correctly. Press Enter following =lorem(3,3) and three paragraphs will be inserted. You can continue to click the macro button and Enter for more paragraphs. Figure 3 Custom Publishing Ribbon 3. When you are done close Word 2010

7 Exercise 2: Building a Word 2010 Add-in In this exercise you will use the built in ribbon customization functionality to build your own ribbon. Task 1 Create a new Word 2010 Addin In this task, you will create a simple Word 2010 add-in that displays a message box when it is loaded. 1. Open Visual Studio 2010 and create a new Word 2010 Add-in a. Start Visual Studio 2010 by clicking the Visual Studio icon on the taskbar b. Click the File -> New -> Project menu item c. In the New Project dialog, select Visual C#\Visual Basic -> Office -> 2010 template category d. Select the Word 2010 Add-in project template e. Enter a Name of Word2010AddIn and set the location to C:\Office2010DeveloperTrainingKit\Labs\GettingStarted\Source\[language]\Starte r f. Uncheck the Create directory for solution check box g. Click OK to create the new project Figure 4(a)

8 Figure 4(b) New Word 2010 Add-in 2. Add the code to display a message box when the add-in loads a. In the Solution Explorer double click ThisAddIn.cs(ThisAddIn.vb in case of VB) b. Add the following using statements to the file C# using System.Windows.Forms; Visual Basic Imports System.Windows.Forms c. Locate the ThisAddIn_Startup method and add the code to display a message box C# private void ThisAddIn_Startup(object sender, System.EventArgs e) { MessageBox.Show("Add-in is starting up"); } Visual Basic Private Sub ThisAddIn_Startup(ByVal sender As Object, ByVal e As System.EventArgs) MessageBox.Show("Add-in is starting up")

9 End Sub 3. Set a breakpoint and start the debugger a. Locate the ThisAddIn_Startup method in the ThisAddIn class b. Place a breakpoint on the first line of the function. Figure 5(a) Figure 5(b) Setting breakpoint c. Start the debugger by pressing F5 d. Wait for the add-in start and stop on the breakpoint Figure 6(a) Figure 6(b) Breakpoint hit e. Continue running by pressing F5 and verify the message box is displayed

10 Figure 7 Add-in startup message box Note: Office Add-ins support debugging directly from Visual Studio When you are done cleanup and remove the add-in a. Close Word 2010 b. In the Solution Explorer, right click Word2010AddIn and click Clean Note: The Clean option deletes a temporary add-in registration that allows Visual Studio to quickly register the add-in for development purposes Exercise 3: Using the Visual Studio 2010 Ribbon Designer In this exercise you will use the Ribbon designer in Visual Studio 2010 to add a custom ribbon to Word Task 1 Create a new Ribbon In this task, you will create a new Publishing ribbon using the Ribbon designer. 1. Add a new Ribbon item to the project a. In the Solution Explorer, right click Word2010AddIn and click Add > New Item

11 b. Select the Office template on the left hand side c. Choose an item of type Ribbon (Visual Designer) d. Name the new item Ribbon.cs(Ribbon.vb in case of VB) and click Add Figure 8(a) Figure 8(b) Add New Ribbon Dialog 2. Rename the ribbon tab and group in the designer a. Right click the tab in the designer and select Properties

12 b. In the Properties window set the Label to Publishing and the (Name) to tabpublishing c. In the designer, select the group named group1 d. In the Properties window set the Label to Formats and the (Name) to grpformats 3. Add a PDF button to the Formats group a. Drag a button from the Toolbox into the Formats group Note: If the Toolbox is not visible select View -> Toolbox in the menu b. In the Properties window set the Label to PDF and the (Name) to btnpdf c. Set the ControlSize to RibbonControlSizeLarge d. Click the button in the Image property e. In the Select Resource dialog, select Local resource and click Import f. Choose C:\Office2010DeveloperTrainingKit\Labs\GettingStarted\Source\[language]\Starte r\pdf.png g. Click OK to select the image Figure 9 PDF Button in the Designer 4. Add an XPS button to the Formats group a. Use the same procedure as above except use XPS in the Label and (Name) and choose xps.png instead of pdf.png

13 Figure 10 PDF and XPS Button in the Designer 5. Add code to publish the document to both buttons a. Double click the PDF button in the designer to generate a handler in code b. Switch back to the designer and double click the XPS button to generate a second handler c. In the code, enter the following using statements C# using System.IO; using Word = Microsoft.Office.Interop.Word; Visual Basic Imports System.IO Imports Word = Microsoft.Office.Interop.Word d. In the btnpdf_click method use the following code to export the current document to the desktop as a PDF. C# string desktopfolder = Environment.GetFolderPath(Environment.SpecialFolder.Desktop); string filename = "QuickExport.pdf"; Globals.ThisAddIn.Application.ActiveDocument.ExportAsFixedFormat( Path.Combine(desktopFolder, filename), Word.WdExportFormat.wdExportFormatPDF, OpenAfterExport: true); Visual Basic Dim desktopfolder As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) Dim filename As String = "QuickExport.pdf" Globals.ThisAddIn.Application.ActiveDocument.ExportAsFixedFormat(Path.Co mbine(desktopfolder, filename), Word.WdExportFormat.wdExportFormatPDF, OpenAfterExport:= True) e. Use this code in btnxps_click to export the current document to the desktop as an XPS. C#

14 string desktopfolder = Environment.GetFolderPath(Environment.SpecialFolder.Desktop); string filename = "QuickExport.xps"; Globals.ThisAddIn.Application.ActiveDocument.ExportAsFixedFormat( Path.Combine(desktopFolder, filename), Word.WdExportFormat.wdExportFormatXPS, OpenAfterExport: true); Visual Basic Dim desktopfolder As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) Dim filename As String = "QuickExport.xps" Globals.ThisAddIn.Application.ActiveDocument.ExportAsFixedFormat(Path.Co mbine(desktopfolder, filename), Word.WdExportFormat.wdExportFormatXPS, OpenAfterExport:= True) Note: The ExportAsFixedFormat method has many parameters not provided. C#\VB.Net 4.0 requires only the necessary parameters. Exercise 3 Verification In order to verify that you have correctly performed all steps in the above exercise, proceed as follows: Test the Add-in Test your add-in by creating a new document and enter some text. Once you are ready to publish your document, switch to the Publishing tab and choose export to PDF or XPS. If a PDF or XPS file appears on the desktop, your add-in worked. 1. From the Debug menu, choose Start Debugging. 2. Once Word 2010 has loaded and you have dismissed the message box, enter some content into the document.

15 Figure 11 Custom Publishing Ribbon 3. Switch to the Publishing ribbon tab 4. Click the PDF and the XPS buttons to export the documents in both formats 5. When the files load in their respective viewers, verify the contents are accurate Figure 12 XPS Viewer 6. When you are done cleanup and remove the add-in a. Close Word 2010 b. In the Solution Explorer, right click Word2010AddIn and click Clean

16 Summary In this exercise you learned how to customize Office 2010 application using a combination of built in functionality and custom Add-ins. These concepts form the foundation for customizations in Office. If the customizations needed can be performed without code they are more accessible to non-developers. In the case where more advanced customizations are needed Visual Studio 2010 provides a development environment allowing developers the control they need. Appendix No Items No Appendix content

Hands-On Lab. Security and Deployment. Lab version: Last updated: 2/23/2011

Hands-On Lab. Security and Deployment. Lab version: Last updated: 2/23/2011 Hands-On Lab Security and Deployment Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 Starting Materials 4 EXERCISE 1: TRUST AND DEPLOYMENT WITH OFFICE ADD-INS... 4 Task 1 Configure the

More information

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHART WEB PART... 4 Task 1 Add the Chart Web Part to the page... 4 Task 2

More information

Colligo Contributor Pro 4.4 SP2. User Guide

Colligo Contributor Pro 4.4 SP2. User Guide 4.4 SP2 User Guide CONTENTS Introduction... 3 Benefits... 3 System Requirements... 3 Software Requirements... 3 Client Software Requirements... 3 Server Software Requirements... 3 Installing Colligo Contributor...

More information

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP 5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP Introduction Print and complete this lab. In this lab, you will use administrative tools to monitor system resources. You will also

More information

Read Me First (Excel 2007)

Read Me First (Excel 2007) Read Me First (Excel 2007) Concrete Mix Evaluator Before installing the CME program please go through these steps to configure your Excel 2007. Open a NEW BLANK Workbook and click on the "Developer " (A)

More information

Lab 4: Adding a Windows User-Interface

Lab 4: Adding a Windows User-Interface Lab 4: Adding a Windows User-Interface In this lab, you will cover the following topics: Creating a Form for use with Investment objects Writing event-handler code to interact with Investment objects Using

More information

Hands-On Lab. Lab 13: Developing Sandboxed Solutions for Web Parts. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab 13: Developing Sandboxed Solutions for Web Parts. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab 13: Developing Sandboxed Solutions for Web Parts Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE VISUAL STUDIO 2010 PROJECT... 3 EXERCISE 2:

More information

INTRODUCTION TO VISUAL BASIC 2010

INTRODUCTION TO VISUAL BASIC 2010 INTRODUCTION TO VISUAL BASIC 2010 Microsoft Visual Basic is a set of programming tools that allows you to create applications for the Windows operating system. With Visual Basic, even a beginner can create

More information

What s New in Access 2007

What s New in Access 2007 What s New in Access 2007 This document provides a general overview of the new and improved features in Microsoft Access 2007. Opening Assurances 1. Functionality is the same; how we interact with the

More information

Lab 3-2: Exploring the Heap

Lab 3-2: Exploring the Heap Lab 3-2: Exploring the Heap Objectives Become familiar with the Windows Embedded CE 6.0 heap Prerequisites Completed Lab 2-1 Estimated time to complete this lab: 30 minutes Lab Setup To complete this lab,

More information

Installation. Campus Edition

Installation. Campus Edition Installation Campus Edition Installation Campus Edition 1. System Requirements... 4 2. Installing Wimba Create... 4 Previous versions... 4 Installing the Campus Edition of Wimba Create... 4 Installing

More information

Newforma Contact Directory Quick Reference Guide

Newforma Contact Directory Quick Reference Guide Newforma Contact Directory Quick Reference Guide This topic provides a reference for the Newforma Contact Directory. Purpose The Newforma Contact Directory gives users access to the central list of companies

More information

Conventions in this tutorial

Conventions in this tutorial This document provides an exercise using Digi JumpStart for Windows Embedded CE 6.0. This document shows how to develop, run, and debug a simple application on your target hardware platform. This tutorial

More information

Hands-On Lab. Lab 02: Visual Studio 2010 SharePoint Tools. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab 02: Visual Studio 2010 SharePoint Tools. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab 02: Visual Studio 2010 SharePoint Tools Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING A SHAREPOINT 2010 PROJECT... 4 EXERCISE 2: ADDING A FEATURE

More information

How to configure the Matlab interface

How to configure the Matlab interface How to configure the Matlab interface 1. MATLAB must be installed For step 2 (required for MATLAB versions 2009b and over), we need to know whether the 32-bit or 64-bit version of MATLAB is installed.

More information

Migration from HEW to e 2 studio Development Tools > IDEs

Migration from HEW to e 2 studio Development Tools > IDEs Migration from HEW to e 2 studio Development Tools > IDEs LAB PROCEDURE Description The purpose of this lab is to allow users of the High-performance Embedded Workbench (HEW) to gain familiarity with the

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

CIS 3260 Intro. to Programming with C#

CIS 3260 Intro. to Programming with C# Running Your First Program in Visual C# 2008 McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Run Visual Studio Start a New Project Select File/New/Project Visual C# and Windows must

More information

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources This application demonstrates how a DataGridView control can be

More information

Installing SensIt, RiskSim, and TreePlan 3.1 INSTALLATION OVERVIEW 3.2 REMOVING PREVIOUS VERSIONS 3.3 THE ADD-IN XLA FILE

Installing SensIt, RiskSim, and TreePlan 3.1 INSTALLATION OVERVIEW 3.2 REMOVING PREVIOUS VERSIONS 3.3 THE ADD-IN XLA FILE Installing SensIt, 3 RiskSim, and TreePlan 3.1 INSTALLATION OVERVIEW SensIt, RiskSim, and TreePlan are decision analysis add-ins for Microsoft Excel 2000 2010 (Windows) and Microsoft Excel 2004 & 2011

More information

Installation Instructions. Your Guide to Installing and Getting Started with WinSteam Version 4.0

Installation Instructions. Your Guide to Installing and Getting Started with WinSteam Version 4.0 Installation Instructions Your Guide to Installing and Getting Started with WinSteam Version 4.0 Copyright 1992-2012 Techware Engineering Applications, Inc. www.techwareeng.com Toll Free (866) TECHWAR

More information

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide TRAINING GUIDE FOR OPC SYSTEMS.NET Simple steps to successful development and deployment. Step by Step Guide SOFTWARE DEVELOPMENT TRAINING OPC Systems.NET Training Guide Open Automation Software Evergreen,

More information

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Contents Create your First Test... 3 Standalone Web Test... 3 Standalone WPF Test... 6 Standalone Silverlight Test... 8 Visual Studio Plug-In

More information

You can call the project anything you like I will be calling this one project slide show.

You can call the project anything you like I will be calling this one project slide show. C# Tutorial Load all images from a folder Slide Show In this tutorial we will see how to create a C# slide show where you load everything from a single folder and view them through a timer. This exercise

More information

LESSON A. The Splash Screen Application

LESSON A. The Splash Screen Application The Splash Screen Application LESSON A LESSON A After studying Lesson A, you should be able to: Start and customize Visual Studio 2010 or Visual Basic 2010 Express Create a Visual Basic 2010 Windows application

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

DOMAIN TECHNOLOGIES. Getting Started Guide Version 1.1. BoxView IDE. Integrated Development Environment

DOMAIN TECHNOLOGIES. Getting Started Guide Version 1.1. BoxView IDE. Integrated Development Environment Getting Started Guide Version 1.1 BoxView IDE Integrated Development Environment Table of Contents INTRODUCTION...3 System Requirements...3 INSTALLATION...4 License Server...4 Registration...5 Node Locked

More information

1. Cannot Run Toolbox 32 (Toolbox.exe) or Toolbox 32 Installer (SETUP.EXE)

1. Cannot Run Toolbox 32 (Toolbox.exe) or Toolbox 32 Installer (SETUP.EXE) Tech Note: Installing Toolbox 32 on PCs Running Windows Vista, Windows 7 or Windows Server 2008 (May also apply to other Windows versions) 22 April 2010 1. Cannot Run Toolbox 32 (Toolbox.exe) or Toolbox

More information

Sharing Data between Applications Connecting 2 PC s running ic/icontrol

Sharing Data between Applications Connecting 2 PC s running ic/icontrol Sharing Data between Applications Connecting 2 PC s running ic/icontrol To connect two PC s running ic or icontrol products, you must have an Ethernet connection between them. The common situations are:

More information

Where Did My Files Go? How to find your files using Windows 10

Where Did My Files Go? How to find your files using Windows 10 Where Did My Files Go? How to find your files using Windows 10 Have you just upgraded to Windows 10? Are you finding it difficult to find your files? Are you asking yourself Where did My Computer or My

More information

Navigating a Database Efficiently

Navigating a Database Efficiently Navigating a Database Efficiently 1 Navigating a Database Efficiently THE BOTTOM LINE Often, the people who use a database are not the same people who create a database, and thus they may have difficulty

More information

Spectrometer Visible Light Spectrometer V4.4

Spectrometer Visible Light Spectrometer V4.4 Visible Light Spectrometer V4.4 Table of Contents Package Contents...3 Trademarks...4 Manual Driver and Application installation...5 Manual Application Installation...6 First Start of the Application...8

More information

Required Setup for 32-bit Applications

Required Setup for 32-bit Applications 1 of 23 8/25/2015 09:30 Getting Started with MASM and Visual Studio 2012 Updated 4/6/2015. This tutorial shows you how to set up Visual Studio 2012 (including Visual Studio 2012 Express for Windows Desktop)

More information

Hands-On Lab. Lab: Client Object Model. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab: Client Object Model. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab: Client Object Model Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: RETRIEVING LISTS... 4 EXERCISE 2: PRINTING A LIST... 8 EXERCISE 3: USING ADO.NET DATA

More information

Chapter 2 Exploration of a Visual Basic.Net Application

Chapter 2 Exploration of a Visual Basic.Net Application Chapter 2 Exploration of a Visual Basic.Net Application We will discuss in this chapter the structure of a typical Visual Basic.Net application and provide you with a simple project that describes the

More information

FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc.

FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc. FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc. TABLE OF CONTENTS System Requirements... 2 I. Determining the.bit version of your Microsoft Office Suite... 2 III. Configuring the Outlook

More information

Lab 6A: Customizing the Desktop

Lab 6A: Customizing the Desktop Lab 6A: Customizing the Desktop Objectives After completing this lab, you will be able to:!" Configure the Desktop!" Configure desktop properties.!" Customize Start menus.!" Modify the location of My Documents

More information

Microsoft Access 2013 Lab #01 Part #01

Microsoft Access 2013 Lab #01 Part #01 Microsoft Access 2013 Lab #01 Part #01 In this exercise, you ll start Access and explore the Backstage view and ribbon. SET UP You need the GardenCompany01 database located in the Chapter01 practice file

More information

Access. Basics PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM

Access. Basics PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM Access 2010 Basics PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 840 SOUTH ROESSLER STREET MONROE,

More information

FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc.

FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc. FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc. TABLE OF CONTENTS System Requirements... 2 I. Determining the.bit version of your Microsoft Office Suite... 2 II. Determine your version of

More information

Instructions for writing Web Services using Microsoft.NET:

Instructions for writing Web Services using Microsoft.NET: Instructions for writing Web Services using Microsoft.NET: Pre-requisites: Operating System: Microsoft Windows XP Professional / Microsoft Windows 2000 Professional / Microsoft Windows 2003 Server.NET

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) AxciScape produces AutoCAD script files which must be Run within AutoCAD. You can do this by typing SCRIPT into the command line and then select the

More information

Create a Customised Tab on the Office 2013 Ribbon

Create a Customised Tab on the Office 2013 Ribbon Create a Customised Tab on the Office 2013 Ribbon Office 2007 saw the addition of the Ribbon feature, which some users found confusing. However, you can use it to your advantage by adding your own custom

More information

Join Queries in Cognos Analytics Reporting

Join Queries in Cognos Analytics Reporting Join Queries in Cognos Analytics Reporting Business Intelligence Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If a report includes

More information

Lab - Task Manager in Windows 7 and Vista

Lab - Task Manager in Windows 7 and Vista Lab - Task Manager in Windows 7 and Vista Introduction In this lab, you will explore Task Manager and manage processes from within Task Manager. Recommended Equipment The following equipment is required

More information

LiveNX Upgrade Guide from v5.1.2 to v Windows

LiveNX Upgrade Guide from v5.1.2 to v Windows LIVEACTION, INC. LiveNX Upgrade Guide from v5.1.2 to v5.1.3 - Windows UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the

More information

USER GUIDE. We hope you enjoy using the product, and please don t hesitate to send us questions or provide feedback at Thank You.

USER GUIDE. We hope you enjoy using the product, and please don t hesitate to send us questions or provide feedback at Thank You. USER GUIDE Introduction This User Guide is designed to serve as a brief overview to help you get started. There is also information available under the Help option in the various Contributor interface

More information

Windows 2000 Disk Management

Windows 2000 Disk Management LAB PROCEDURE 25 Windows 2000 Disk Management OBJECTIVES 1. Use Disk Cleanup. 2. Backup a file. 3. Restore a backup. 4. Compress a file. 5. Encrypt a file. Troubleshooting RESOURCES 1. Marcraft 8000 Trainer

More information

Introduction. Key features and lab exercises to familiarize new users to the Visual environment

Introduction. Key features and lab exercises to familiarize new users to the Visual environment Introduction Key features and lab exercises to familiarize new users to the Visual environment January 1999 CONTENTS KEY FEATURES... 3 Statement Completion Options 3 Auto List Members 3 Auto Type Info

More information

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY VERSION 2015.1 JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY TEST STUDIO QUICK-START GUIDE CONTENTS Create your First Test.2 Standalone Web

More information

A Tutorial for ECE 175

A Tutorial for ECE 175 Debugging in Microsoft Visual Studio 2010 A Tutorial for ECE 175 1. Introduction Debugging refers to the process of discovering defects (bugs) in software and correcting them. This process is invoked when

More information

ZENworks 11 Support Pack 4 Endpoint Security Agent Reference. October 2016

ZENworks 11 Support Pack 4 Endpoint Security Agent Reference. October 2016 ZENworks 11 Support Pack 4 Endpoint Security Agent Reference October 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S.

More information

Step 4 Part F - How to Download a Video on YouTube and Delete a Video

Step 4 Part F - How to Download a Video on YouTube and Delete a Video Step 4 Part F - How to Download a Video on YouTube and Delete a Video When you finish Edit your Video on your YouTube account and save it or save as new Video, you may want to Download it to your computer.

More information

Using the TekScope IVI-COM Driver from C#.NET

Using the TekScope IVI-COM Driver from C#.NET Using the TekScope IVI-COM Driver from C#.NET Introduction This document describes the step-by-step procedure for using the TekScope IVI- COM driver from a.net environment using C#. Microsoft.Net supports

More information

HarePoint Content and Workflow Migrator. For SharePoint Foundation/Server 2010, 2013, 2016 and SharePoint Online.

HarePoint Content and Workflow Migrator. For SharePoint Foundation/Server 2010, 2013, 2016 and SharePoint Online. HarePoint Content and Workflow Migrator For SharePoint Foundation/Server 2010, 2013, 2016 and SharePoint Online. Product version 3.1 August 11, 2017 Table of Contents Table of Contents... 2 I. Introduction....

More information

Software Installation Guide for S32 Design Studio IDE (S32DS): FRDM-KEAZ128Q80 FRDM-KEAZ64Q64 FRDM-KEAZN32Q64

Software Installation Guide for S32 Design Studio IDE (S32DS): FRDM-KEAZ128Q80 FRDM-KEAZ64Q64 FRDM-KEAZN32Q64 Software Installation Guide for S32 Design Studio IDE (S32DS): FRDM-KEAZ128Q80 FRDM-KEAZ64Q64 FRDM-KEAZN32Q64 Ultra-Reliable MCUs for Industrial and Automotive www.freescale.com/frdm-kea External Use 0

More information

KG-TOWER Software Download and Installation Instructions

KG-TOWER Software Download and Installation Instructions KG-TOWER Software Download and Installation Instructions Procedures are provided for three options to download and install KG-TOWER software version 5.1. Download to a temporary folder and install immediately.

More information

Start menu. Toggles between All Programs & Back

Start menu. Toggles between All Programs & Back Microsoft Windows Vista Illustrated Introductory Working with Windows Programs Objectives Start a program Open and save a WordPad document Modify text in WordPad Work with a graphic in Paint 2 Objectives

More information

16 Starting Optional Application

16 Starting Optional Application 16 Starting Optional Application 16.1 Try to Start Optional Application...16-2 16.2 Setting Guide...16-21 16-1 16.1 Try to Start Optional Application [Action Example] Detect the rising of the trigger device

More information

To complete this activity, you will need the following files:

To complete this activity, you will need the following files: CHAPTER 1 Windows XP More Skills 12 Move Data Between Windows You can open several application windows at the same time; they do not need to be files created by the same program. Having more than one window

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

Getting Started with OrigaMaster 5. OrigaLys. Electr Chem

Getting Started with OrigaMaster 5. OrigaLys. Electr Chem Getting Started with OrigaMaster 5 OrigaLys OrigaLys Getting Started with OrigaMaster 5 CONTENTS 1. WELCOME... 5 2. SYSTEM REQUIREMENTS... 5 3. INSTALLING ORIGAMASTER 5... 5 4. SETTING UP THE DEVICES...

More information

Tutorial - Exporting Models to Simulink

Tutorial - Exporting Models to Simulink Tutorial - Exporting Models to Simulink Introduction The Matlab and Simulink tools are widely used for modeling and simulation, especially the fields of control and system engineering. This tutorial will

More information

CorpSystem Workpaper Manager

CorpSystem Workpaper Manager CorpSystem Workpaper Manager Networking Best Practices Guide Version 6.5 Summer 2010 Copyright: 2010, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER? 1 A Quick Tour WHAT S IN THIS CHAPTER? Installing and getting started with Visual Studio 2012 Creating and running your fi rst application Debugging and deploying an application Ever since software has

More information

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1 Hands-On Lab Windows Azure Virtual Machine Roles Lab version: 2.0.0 Last updated: 12/14/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING AND DEPLOYING A VIRTUAL MACHINE ROLE IN WINDOWS AZURE...

More information

11.1 Try to Write Recipe Data in Device/PLC

11.1 Try to Write Recipe Data in Device/PLC 11.1 Try to Write Recipe Data in Device/PLC [Action Example] Detect the rising of the trigger device (bit device: "M01") of Device/PLC and write recipe sheet data created in Excel into 5 devices (word

More information

Windows 2000 Safe Mode

Windows 2000 Safe Mode LAB PROCEDURE 29 Windows 2000 Safe Mode OBJECTIVES 1. Restart and try various startup options. RESOURCES Troubleshooting 1. Marcraft 8000 Trainer with Windows 2000 installed 2. A PS2 mouse 3. A LAN connection

More information

Sherlock Tutorial Getting Started

Sherlock Tutorial Getting Started Sherlock Tutorial Getting Started Background Sherlock is a Java-based application that allows users to analyze the reliability of circuit card assemblies based on their design files. Sherlock has been

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

Personality Migration Reference

Personality Migration Reference www.novell.com/documentation Personality Migration Reference ZENworks 11 Support Pack 3 July 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use

More information

Colligo Contributor File Manager 4.3. User Guide

Colligo Contributor File Manager 4.3. User Guide Colligo Contributor File Manager 4.3 User Guide CONTENTS Introduction... 2 Technical Requirements... 3 Systems Supported... 3 Application Prerequisites... 3 Outlook Add-in Prerequisites... 3 Installing

More information

Hands-On Lab. Instrumentation and Performance -.NET. Lab version: Last updated: December 3, 2010

Hands-On Lab. Instrumentation and Performance -.NET. Lab version: Last updated: December 3, 2010 Hands-On Lab Instrumentation and Performance -.NET Lab version: 1.0.0 Last updated: December 3, 2010 CONTENTS OVERVIEW 3 EXERCISE 1: INSTRUMENTATION USING PERFORMANCE COUNTERS. 5 Task 1 Adding a Class

More information

Scheduler for Outlook User s Guide

Scheduler for Outlook User s Guide Scheduler for Outlook 2007-2013 User s Guide 1 Table of Contents ReadyTalk Scheduler for Outlook 2007-2013... 3 Download and Installation Instructions... 4 Customize Your ReadyTalk Scheduler for Outlook

More information

Telerik Test Studio. Web/Desktop Testing. Software Quality Assurance Telerik Software Academy

Telerik Test Studio. Web/Desktop Testing. Software Quality Assurance Telerik Software Academy Telerik Test Studio Web/Desktop Testing Software Quality Assurance Telerik Software Academy http://academy.telerik.com The Lectors Iliyan Panchev Senior QA Engineer@ DevCloud Testing & Test Studio Quality

More information

Hands-On Lab. Authoring and Running Automated GUI Tests using Microsoft Test Manager 2012 and froglogic Squish. Lab version: 1.0.5

Hands-On Lab. Authoring and Running Automated GUI Tests using Microsoft Test Manager 2012 and froglogic Squish. Lab version: 1.0.5 Hands-On Lab Authoring and Running Automated GUI Tests using Microsoft Test Manager 2012 and froglogic Squish Lab version: 1.0.5 Last updated: 27/03/2013 Overview This hands- on lab is part two out of

More information

To get started with Visual Basic 2005, I recommend that you jump right in

To get started with Visual Basic 2005, I recommend that you jump right in In This Chapter Chapter 1 Wading into Visual Basic Seeing where VB fits in with.net Writing your first Visual Basic 2005 program Exploiting the newfound power of VB To get started with Visual Basic 2005,

More information

MANAGING MAPLE DOCUMENTS Worksheet or Document mode

MANAGING MAPLE DOCUMENTS Worksheet or Document mode MANAGING MAPLE DOCUMENTS Worksheet or Document mode SAVING A MAPLE DOCUMENT These steps apply if you are saving a Maple document for the first time. Otherwise, see NOTE below. Either: From the menu bar,

More information

Acronis Backup & Recovery 11 Beta Advanced Editions

Acronis Backup & Recovery 11 Beta Advanced Editions Acronis Backup & Recovery 11 Beta Advanced Editions Quick Start Guide Table of contents 1 Main components... 3 2 Supported operating systems... 3 3 Where do I install the components?... 3 4 What you need

More information

Windows Embedded Compact Test Kit User Guide

Windows Embedded Compact Test Kit User Guide Windows Embedded Compact Test Kit User Guide Writers: Randy Ocheltree, John Hughes Published: October 2011 Applies To: Windows Embedded Compact 7 Abstract The Windows Embedded Compact Test Kit (CTK) is

More information

Print Job Launcher. Introduction. What is Print Job Launcher?

Print Job Launcher. Introduction. What is Print Job Launcher? Introduction What is Print Job Launcher? Print Job Launcher is a software application that can monitor folders. When a file occurs in one of these folders the application will print the file to a specific

More information

OneNote. Using OneNote on the Desktop. Starting screen. The OneNote interface the Ribbon

OneNote. Using OneNote on the Desktop. Starting screen. The OneNote interface the Ribbon OneNote Using OneNote on the Desktop 1. Click start on the task bar 2. Type OneNote (search is a quick way to find applications, documents and other items on your computer) 3. Select Microsoft OneNote

More information

Parallel Debugging. ª Objective. ª Contents. ª Learn the basics of debugging parallel programs

Parallel Debugging. ª Objective. ª Contents. ª Learn the basics of debugging parallel programs ª Objective ª Learn the basics of debugging parallel programs ª Contents ª Launching a debug session ª The Parallel Debug Perspective ª Controlling sets of processes ª Controlling individual processes

More information

Network License Manager and Client Toolchain. Installation Guide

Network License Manager and Client Toolchain. Installation Guide Network License Manager and Client Toolchain Contents This guide is intended to help you to install HEW and the Network License Manager and obtain a license key (if entitled). It will cover: 1. Installing

More information

1 of 7 7/24/2014 8:16 PM

1 of 7 7/24/2014 8:16 PM 1 of 7 7/24/2014 8:16 PM Instructions for Windows XP Instructions for Windows Vista Instructions for Windows 7 Windows XP Enabling Indic Language Support 1. Click Start, click Control Panel, and then double-click

More information

FIT 100. Lab 8: Writing and Running Your First Visual Basic Program Spring 2002

FIT 100. Lab 8: Writing and Running Your First Visual Basic Program Spring 2002 FIT 100 Lab 8: Writing and Running Your First Visual Basic Program Spring 2002 1. Create a New Project and Form... 1 2. Add Objects to the Form and Name Them... 3 3. Manipulate Object Properties... 3 4.

More information

Tutorial SemTalk Version 4.4 SharePoint Integration for SemTalk

Tutorial SemTalk Version 4.4 SharePoint Integration for SemTalk Tutorial SemTalk Version 4.4 SharePoint Integration for SemTalk Table of Contents Introduction... 3 Document Management Features... 3 Saving Documents to SharePoint... 5 Open Documents from SharePoint...

More information

You have a PC with a USB interface, running Microsoft Windows XP (SP2 or greater) or Vista You have the Workshop Installation Software Flash Drive

You have a PC with a USB interface, running Microsoft Windows XP (SP2 or greater) or Vista You have the Workshop Installation Software Flash Drive 03- COMPOSER STUDIO Stellaris Development and Evaluation Kits for Code Composer Studio The Stellaris Development and Evaluation Kits provide a low-cost way to start designing with Stellaris microcontrollers

More information

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that Getting Started with the Superpave Calculator worksheet. The worksheet containing the Superpave macros must be copied onto the computer. The user can place the worksheet in any desired directory or folder.

More information

Microsoft Visual Studio 2010

Microsoft Visual Studio 2010 Microsoft Visual Studio 2010 A Beginner's Guide Joe Mayo Mc Grauu Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore Sydney Toronto Contents ACKNOWLEDGMENTS

More information

COPYRIGHTED MATERIAL. Part I: Getting Started. Chapter 1: IDE. Chapter 2: Controls in General. Chapter 3: Program and Module Structure

COPYRIGHTED MATERIAL. Part I: Getting Started. Chapter 1: IDE. Chapter 2: Controls in General. Chapter 3: Program and Module Structure Part I: Getting Started Chapter 1: IDE Chapter 2: Controls in General Chapter 3: Program and Module Structure Chapter 4: Data Types, Variables, and Constants Chapter 5: Operators Chapter 6: Subroutines

More information

ENSC 350 ModelSim Altera Tutorial

ENSC 350 ModelSim Altera Tutorial ENSC 350 ModelSim Altera Tutorial This is a quick guide get you started with the ModelSim Altera simulator. ModelSim is only a functional verification tool so you will also have to use Quartus II to complete

More information

docalpha Monitoring Station

docalpha Monitoring Station ARTSYL DOCALPHA MONITORING STATION MANUAL 1. docalpha Architecture Overview... 3 1.1. Monitoring Station Overview... 4 2. What's New in docalpha Monitoring Station 4.5... 4 3. Working with Monitoring Station...

More information

Falcon UniPro Stimulus Test Editor User Manual

Falcon UniPro Stimulus Test Editor User Manual Falcon UniPro Stimulus Test Editor User Manual Copyright Protocol Insight. All rights reserved. Licensed software products are owned by Protocol Insight or its suppliers, and are protected by national

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney (with or without Amicus Billing) With Microsoft SQL Server Reporting Services, use Report Builder to generate and author easy-to-use

More information

Struts Tools Reference Guide. Version: beta1

Struts Tools Reference Guide. Version: beta1 Struts Tools Reference Guide Version: 3.0.0.beta1 1. Introduction... 1 1.1. Key Features of Struts Tools... 1 1.2. Other relevant resources on the topic... 2 2. Projects... 3 2.1. Creating a New Struts

More information

Lab Android Development Environment

Lab Android Development Environment Lab Android Development Environment Setting up the ADT, Creating, Running and Debugging Your First Application Objectives: Familiarize yourself with the Android Development Environment Important Note:

More information

Outlook 2010 Level 2

Outlook 2010 Level 2 Outlook 2010 Level 2 Table of Contents MS Outlook 2010 Level 2... 1 Personalize Your E-mail... 1 Setting the Default Font for E-mails... 1 Selecting a Default Stationary... 3 Selecting a Default Theme...

More information

CEL Profile-Builder Software Manual

CEL Profile-Builder Software Manual ZIC2410 Series CEL Profile-Builder Software Manual 0005-05-08-16-001 (Rev C) Table of Contents 1 INTRODUCTION... 3 1.1 REFERENCED DOCUMENTS... 3 2 INSTALLATION... 3 2.1 INSTALLING THE PROFILE-BUILDER PROGRAM...

More information