Tests Generation Designer. A Designer for Generating Complex Equipment Tests. User Guide. Version: 1.00

Size: px
Start display at page:

Download "Tests Generation Designer. A Designer for Generating Complex Equipment Tests. User Guide. Version: 1.00"

Transcription

1 Tests Generation Designer A Designer for Generating Complex Equipment Tests User Guide Version: 1.00

2 Table of contents 1. Quick Start Compiling a New Test 3 2. TGD Main components 6 a. Assemblies Explorer 6 b. Properties Window 6 c. Options Window 7 d. Grid Output Window 9 3. Properties of Components 10 a. Test Properties 10 b. Step Properties 10 c. Test-Case Properties Miscellaneous 11 a. Saving and loading tests 11 b. DLLs and the Assemblies Path Property 11 2

3 1. Getting Started: Compiling a new test-case Open a new test window in one of the following ways: 1. In the menu: File New 2. Click the New Test button on the toolbar. 3. Press Ctrl+N. A new test window will appear. Note that several tests can be opened simultaneously by the editor. Additionally, the test properties are displayed in the Properties Window. If this window is not visible, open it in one of the following ways: 1. In the menu: View Properties Window 2. Click the Properties Window button on the toolbar. 3. Press Ctrl+Shift+P. Whenever you need to edit test properties, simply click on the document (every spot is all right except for the step group-boxes). Clicking on a step selects it. It also causes the step properties to be displayed in the Property Grid. 3

4 Load one or more assemblies that contain test cases using the Assemblies Explorer window. If this window is not visible, open it in one of the following ways: 1. In the menu: View Assemblies Explorer 2. Click the Assemblies Explorer button on the toolbar. 3. Press Ctrl+Shift+A. Select the required test and click Open A list of warnings might appear during the loading of the selected test. The warnings are meant to provide information regarding classes in the assembly that appear to be test-cases (implement ITestCase<T>) but do not meet all of the requirements. These classes won t appear in the test-case list. See Appendix A in the Developers guide for more information. If the Grid Output window is not 4

5 visible, you can display it in one of the following ways: 1. In the menu: View Grid Output. 2. Click the Grid Output button on the toolbar. 3. Press Ctrl+Shift+O. If the assembly contains testcases that can be use as building blocks, the test-cases will appear in the Assemblies Explorer. Drag and drop the test-cases to the steps in the document as needed. Additionally, it is possible to right click on a test case and select "Add Single" which will add a single instance of the testcase to the step, or "Add Multiple" which will prompt you to provide a number and afterwards add this number of instances to the selected step. After adding a test-case, you can edit its parameters and properties. Select the test-case you want to edit by clicking on it. 5

6 Change the parameter and settings as needed. You might need to expand the parameters by clicking on the + to edit complex types. Generate the test in one of the following ways: 1. In the menu: Build Generate Test. 2. Click the Generate Test button on the toolbar. 3. Press F5. Note: if you wish to override the type of the generated assembly, you can use Generate as TestCase or Generate as Fixture from the Build menu. You can now load this test-case in NUnit (if this is a fixture), or use it as a test-case (if this is a test-case). Various shortcuts to speed-up this process are present in the Tools menu. Note: when loading the test in Nunit, the following files must be present in the same directory as the new generated assembly: 1. KLATencor.TestAuto mation.emissary.dll 2. nunit.framework.dll 6

7 2. TGD Main components A. THE ASSEMBLIES EXPLORER Main objective Provide a way to load assemblies that contain needed test cases. Open an assembly, and load the contained test-cases to the explorer. Clear all assemblies. Switches from a list view to a tree view. B. THE PROPERTIES WINDOW Main objective Edit test, step and test-case properties and parameters. Toggle properties display: categorized or alphabetical. Property Name Property Value Property Description 7

8 C. THE OPTIONS WINDOW Main objective Edit various application settings. c.1: General Options The output directory of generated tests. Path to NUnit s executable. This property is not required for successfully generating new tests The default name of a generated assembly. c.2: Test Building options Number of initial steps in a new test. The background color that will be used to highlight selected steps. A flag indicating whether to request user confirmation before performing step deletion. A flag indicating whether a copy of the generated source should be saved to: <program dir>\generatedcode The default output level of new tests (when executed in NUnit) 8

9 c.3: Assemblies options A flag indicating whether the following extra paths should be added automatically to the referenced assemblies of new tests. D. THE GRID OUTPUT WINDOW Main objective Display various notifications to the user. Filtering support; Select the filter and click on filter. Messages of various types: Info, Error, Success and Warning. 9

10 3. Properties of Components A. TEST PROPERTIES Each test (window) has the following properties which can be updated using the Properties Window (by clicking anywhere in the test document): Compilation 1. Assembly name The name of the compiled assembly. 2. Manual class name Use this property if you wish to set a specific class name for your test. If this field is left empty an automatic class name will be provided. 3. Type defines the test-type. This field has the following options: a. Fixture the test will be compiled as a test-fixture, and the user will be able to load it to NUnit. b. TestCase the test will be compiled as a test-case and future tests will be able to use it as a build block. c. Both (Default value) the test will be compiled as both Fixture and TestCase. Execution 1. Assemblies Path extra paths that might contain assemblies that are needed while executing the created test. See the DLLs and the Assemblies Path property. 2. Output message controls the amount of messages that will be sent to the console while executing. From Debug level (Lots of messages) to None. The default level can be changed in the Options. 3. Referenced Assemblies a read-only property that can be used to see which assemblies are referenced directly by a given test and why (i.e. what test cases from the assembly are currently used in this test). MetaData 1. Author - test author. 2. Date time the last time that the test was modified. 3. Description test description. 4. Name test name. 5. XML Path this path will be used when Ctrl+S is pressed (save). B. STEP PROPERTIES Each step has the following properties which can be updated using the Properties Window (by clicking anywhere in the groupbox): 1. Override test-case settings a flag indicating whether the delay for the 2 nd, 3 rd test-cases should be taken from the step properties. If this value is set to true then the delay properties of the test-cases in the current step will be overridden with the step's starting delay value. 1. Starting delay the number of milliseconds that the i+1 test-case should wait before executing, after the i th test-case started its execution. This value has no affect on the first test case in the step. C. TEST-CASE PROPERTIES 2. Start delay the number of milliseconds that the test-case should wait before executing after the previous test-case started its execution. This value has no affect on the first test case in the step. 3. Parameters the parameters of the test-case. Use this property to edit the testcase parameter (this field changes according to the selected test-case). 10

11 4. Miscellaneous A. SAVING AND LOADING TESTS Saving a test: Click on File Menu Save/Save As, or press Ctrl+S. Loading a test: Click on File Menu Open, or press Ctrl+O. B. DLLS AND THE ASSEMBLIES PATH PROPERTY The problem Suppose that an assembly of a test named Test.dll references an assembly named RefA.dll which is located in c:\dlls. Suppose that RefA.dll references an assembly named RefB.dll which is located in c:\dlls\subdir. While executing Test.dll, the.net framework will try to locate and load RefA.dll. Loading RefA.dll will also cause the framework to try loading RefB.dll. The.Net framework does not know that RefB.dll is located in c:\dlls\subdir, so the load fails and an exception is raised. The solution Before executing the test, a list of directories that might contain assemblies is generated. This list contains: 1. Every directory that contains a directly referenced assembly. (IE. if the test references c:\dlls\ref.dll, then c:\dlls is added to the list). 2. Every directory from the Assembly Path Property. 11

The CAP Panel Builder technology is designed to construct and manage configurations of stack panel products.

The CAP Panel Builder technology is designed to construct and manage configurations of stack panel products. About The CAP technology is designed to construct and manage configurations of stack panel products. Use the intuitive to assemble the components and control properties of stackable panels such as top

More information

FEATURE INDEX TAB MIX PLUS: LINKS... 3 TAB MIX PLUS: EVENTS TAB OPENING... 4 TAB MIX PLUS: EVENTS TAB FOCUS... 5

FEATURE INDEX TAB MIX PLUS: LINKS... 3 TAB MIX PLUS: EVENTS TAB OPENING... 4 TAB MIX PLUS: EVENTS TAB FOCUS... 5 FEATURE HELP FEATURE INDEX TAB MIX PLUS: LINKS... 3 TAB MIX PLUS: EVENTS TAB OPENING... 4 TAB MIX PLUS: EVENTS TAB FOCUS... 5 TAB MIX PLUS: EVENTS TAB CLOSING... 6 TAB MIX PLUS: EVENTS TAB FEATURES...

More information

MagicQ Tutorial 2015 ChamSys MagicQ Tutorial 1 of 19

MagicQ Tutorial 2015 ChamSys MagicQ Tutorial 1 of 19 ChamSys MagicQ Tutorial 1 of 19 Tutorial 1 : Windows & Buttons This tutorial introduces MagicQ, showing you how to open and close windows and perform simple operations using the MagicQ interface. It uses

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

Ocean Wizards and Developers Tools in Visual Studio

Ocean Wizards and Developers Tools in Visual Studio Ocean Wizards and Developers Tools in Visual Studio For Geoscientists and Software Developers Published by Schlumberger Information Solutions, 5599 San Felipe, Houston Texas 77056 Copyright Notice Copyright

More information

Start Active-HDL. Create a new workspace TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS

Start Active-HDL. Create a new workspace TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS Introduction to Active-HDL TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS This tutorial will introduce the tools and techniques necessary to design a basic schematic. The goal of this tutorial is

More information

Add notes to a document

Add notes to a document Add notes to a document WX and AX Add notes to a document Web Access (WX) and Document Manager (AX) In, you can mark up a document using the annotation toolbar. With these tools, you are able to add typewritten

More information

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

The KWordQuiz Handbook. Peter Hedlund

The KWordQuiz Handbook. Peter Hedlund Peter Hedlund 2 Contents 1 Introduction 1 1.1 Easy to use............................... 1 1.1.1 Practice modes........................ 1 1.1.2 Quiz types........................... 1 1.1.3 Vocabulary

More information

Creating a new CDC policy using the Database Administration Console

Creating a new CDC policy using the Database Administration Console Creating a new CDC policy using the Database Administration Console When you start Progress Developer Studio for OpenEdge for the first time, you need to specify a workspace location. A workspace is a

More information

The Basics of Visual Studio Code

The Basics of Visual Studio Code / VS Code 0.9.1 is available. Check out the new features /updates and update /docs/howtoupdate it now. TOPICS The Basics Tweet 16 Like 16 Edit in GitHub https://github.com/microsoft/vscode docs/blob/master/docs/editor/codebasics.md

More information

Installation Manual and Quickstart Guide

Installation Manual and Quickstart Guide JuliaPro (v0.6.2.2) Installation Manual and Quickstart Guide Contents 1. Objective 2. Prerequisites 3. Installing JuliaPro 4. Using the JuliaPro Command Prompt 4.1. Configuring PyCall and IJulia for use

More information

OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING

OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING 1 OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING DISPLAYING THE ADVANCED TOOLBAR (2007) The Advanced toolbar isn t advanced; it s just the commands that they couldn t fit on the Standard

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Tech Note #13 Integration of the WonderWare InTouch9.5 HMI and CTC OPCServer2.0

Tech Note #13 Integration of the WonderWare InTouch9.5 HMI and CTC OPCServer2.0 Tech Note #13 Integration of the WonderWare InTouch9.5 HMI and CTC OPCServer2.0 This tech tip will show you how to set up CTC s OPC server with Wonderware Intouch 9.5. It explains how to use both the CTC

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Designer/Player 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 3 Who should read this manual... 3 What s included in this manual... 3 Symbols

More information

Interactive Presentation Manual

Interactive Presentation Manual Interactive Presentation Manual Contents 1. Basic Use 1.1. Master Layout 1.2. Widget Creation 1.3. Widget Customization 1.4. Move Widgets 1.5. Grids 1.6. Saving Your Progress 1.7. Deleting Widgets 1.7.1.

More information

BOC USER MANUAL. Bridge Communications

BOC USER MANUAL. Bridge Communications BOC USER MANUAL Bridge Communications +17012124797 www.bridgeoc.com BOC User Manual Table of Contents Main Screen Layout.. 2 Call Control. 3-6 Blind Transfer Supervised Transfer Voicemail Transfer Free

More information

Installation Manual and Quickstart Guide

Installation Manual and Quickstart Guide JuliaPro (v0.6.2.2) Installation Manual and Quickstart Guide Contents 1. Objective 2. Prerequisites 2.1. Installation of Xcode command line tools 3. Installing JuliaPro 4. Using the JuliaPro Command Prompt

More information

Akkadian Console 4.0

Akkadian Console 4.0 Akkadian Console 4.0 User Guide Copyright and Trademarks: I. Copyright: This website and its content is copyright 2015 Akkadian Labs, LLC. All rights reserved. Except with the prior written permission

More information

Axon HD Content Management Application (CMA)

Axon HD Content Management Application (CMA) [ ] Axon HD Content Management Application (CMA) A Content Management Application (CMA) running on an Axon HD media server or a computer connected through an Ethernet network gives you remote control of

More information

Content Management Application (CMA)

Content Management Application (CMA) Chapter 13: CHAPTER 13 A running on an Axon HD media server or a computer connected through an Ethernet network gives you remote control of content, software and configuration management functions. The

More information

Eclipse Quick Reference Windows Hosted

Eclipse Quick Reference Windows Hosted Eclipse Quick Reference Windows Hosted Menus and Keyboard Shortcuts (some menus/items can be hidden in any perspective) File Menu New Open Path Open File Close Close All Save Save As Save All Revert Move

More information

How to Get Started. Figure 3

How to Get Started. Figure 3 Tutorial PSpice How to Get Started To start a simulation, begin by going to the Start button on the Windows toolbar, then select Engineering Tools, then OrCAD Demo. From now on the document menu selection

More information

Installation Manual and Quickstart Guide

Installation Manual and Quickstart Guide JuliaPro (v0.6.2.1) Installation Manual and Quickstart Guide Contents 1. Objective 2. Prerequisites 2.1. System Library Requirements 2.1.1 Prerequisites for Installation on CentOS 7 2.1.2 Prerequisites

More information

Enterprise Architect. User Guide Series. Keyboard Shortcuts

Enterprise Architect. User Guide Series. Keyboard Shortcuts Enterprise Architect User Guide Series Keyboard s Are there keyboard shortcuts in Sparx Systems Enterprise Architect? You can display Enterprise Architect dialogs, windows and views, navigate the model,

More information

Confluence User Training Guide

Confluence User Training Guide Confluence User Training Guide Below is a short overview of wikis and Confluence and a basic user training guide for completing common tasks in Confluence. This document outlines the basic features that

More information

Project. The project file contains the following information:

Project. The project file contains the following information: 2 Project The mikroc for 8051 organizes applications into projects consisting of a single project file (extension.mcproj) and one or more source files (extension.c). MikroC for 8051 IDE allows you to manage

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

User Guide FFFA

User Guide FFFA User Guide FFFA001508-02 www.focusrite.com Contents INTRODUCTION... 3 About this User Guide...3 SYSTEM REQUIREMENTS........................................................ 4 SOFTWARE INSTALLATION... 4

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

SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC)

SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC) SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC) DESKTOP CLIENT USER GUIDE Version 4 January 2018 TABLE OF CONTENTS About the SaskTel IBC Desktop Client...3 Requirements...3 How to download and install

More information

HOW TO USE CODE::BLOCKS IDE FOR COMPUTER PROGRAMMING LABORATORY SESSIONS

HOW TO USE CODE::BLOCKS IDE FOR COMPUTER PROGRAMMING LABORATORY SESSIONS HOW TO USE CODE::BLOCKS IDE FOR COMPUTER PROGRAMMING LABORATORY SESSIONS INTRODUCTION A program written in a computer language, such as C/C++, is turned into executable using special translator software.

More information

Master Microsoft Outlook!

Master Microsoft Outlook! Master Microsoft Outlook! A Smarter Way to Use Email, Calendars and More Outlook Topics The Ideal Outlook Environment Email Management a New Level Calendar Quick Tips Use Outlook for Project Management

More information

Add notes to a document

Add notes to a document Add notes to a document WX and AX Add notes to a document ApplicationXtender Web Access (WX) and ApplicationXtender Document Manager (AX) In ApplicationXtender, you can mark up a document using the annotation

More information

User Guide FFFA

User Guide FFFA User Guide FFFA001508-01 www.focusrite.com Contents Introduction... 3 About this User Guide...3 System Requirements........................................................ 4 Software Installation... 4

More information

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer Learning Targets: Students will be introduced to industry recognized game development software Students will learn how to navigate within the software Students will learn the basics on how to use Construct

More information

SchoolDesk University

SchoolDesk University SchoolDesk University Forms, Surveys, and Polls Module 101 Guided Walk-through for the basic fields, terminology, and location of tools. What is the NEW SD7 Forms Module? The NEW SchoolDesk Forms Module,

More information

Getting Started with the JNBridgePro Plug-ins for Visual Studio and Eclipse

Getting Started with the JNBridgePro Plug-ins for Visual Studio and Eclipse for Visual Studio and Eclipse Version 8.2 www.jnbridge.com JNBridge, LLC www.jnbridge.com COPYRIGHT 2002 2017 JNBridge, LLC. All rights reserved. JNBridge is a registered trademark and JNBridgePro and

More information

Microsoft Office Outlook 2007 Quick Reference Card

Microsoft Office Outlook 2007 Quick Reference Card Microsoft Office Outlook 2007 Quick Reference Card Outlook 2007 Main Screen The default view opens to the Mail Folder, Navigation Pane, the Inbox, To-Do Bar, and the Reading Pane. The Main Screen provides

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

Delete Content. Learning Objectives. In this Job Aid, you will learn how to delete:

Delete Content. Learning Objectives. In this Job Aid, you will learn how to delete: Delete Content Learning Objectives In this Job Aid, you will learn how to delete: 1 A single file 3 2 Multiple files 5 3 A single folder 9 4 Multiple folders 12 Last updated: June 15, 2012 Overview Deleting

More information

Your comments and suggestions on the operation of this software are welcome. Please address them to:

Your comments and suggestions on the operation of this software are welcome. Please address them to: Your comments and suggestions on the operation of this software are welcome. Please address them to: ICONICS 100 Foxborough Blvd. Foxborough, MA 02035 Tel: 508-543-8600 Fax: 508-543-1503 E-mail: support@iconics.com

More information

Extreme Installers: Slash The.NET Runtime Size in Half, Register Users Online

Extreme Installers: Slash The.NET Runtime Size in Half, Register Users Online Extreme Installers: Slash The.NET Runtime Size in Half, Register Users Online [reprint of article that appeared on the October 2005 issue of MSDN Magazine Europe] This article uses the following technologies:

More information

MadCap Software. Index Guide. Flare 2017 r2

MadCap Software. Index Guide. Flare 2017 r2 MadCap Software Index Guide Flare 2017 r2 Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Eloqua Insight Intro Analyzer User Guide

Eloqua Insight Intro Analyzer User Guide Eloqua Insight Intro Analyzer User Guide Table of Contents About the Course Materials... 4 Introduction to Eloqua Insight for Analyzer Users... 13 Introduction to Eloqua Insight... 13 Eloqua Insight Home

More information

Adobe Acrobat Reader Release 4 Mini Guide. Introduction to Adobe Acrobat Reader 4 and Hints and Tips for reading and printing PDF's

Adobe Acrobat Reader Release 4 Mini Guide. Introduction to Adobe Acrobat Reader 4 and Hints and Tips for reading and printing PDF's Adobe Acrobat Reader Release 4 Mini Guide Introduction to Adobe Acrobat Reader 4 and Hints and Tips for reading and printing PDF's Contents: 1 INTRODUCTION 1 2 USING ACROBAT READER RELEASE 4 1 2.1 Viewing

More information

Creating Interactive Procedures and Training Courses

Creating Interactive Procedures and Training Courses Creating Interactive s and Training Courses 2017 ParallelGraphics CONTENTS INTRODUCTION... 1 1 PROCESS LAYOUT AND BASIC OPERATIONS... 1 1.1 General Data Flow Diagram... 2 1.2 Preparing Input Data for RapidAuthor

More information

Ink2Go Help. Toolbar functions

Ink2Go Help. Toolbar functions Toolbar functions S/N Icons Description 1 New Page Create a new page for annotations. Existing annotations will be saved as previous page. You can then use Previous Page/Next Page buttons to navigate between

More information

At the shell prompt, enter idlde

At the shell prompt, enter idlde IDL Workbench Quick Reference The IDL Workbench is IDL s graphical user interface and integrated development environment. The IDL Workbench is based on the Eclipse framework; if you are already familiar

More information

Parish . User Manual

Parish  . User Manual Parish Email User Manual Table of Contents LOGGING IN TO PARISH EMAIL... 3 GETTING STARTED... 3 GENERAL OVERVIEW OF THE USER INTERFACE... 3 TERMINATE THE SESSION... 4 EMAIL... 4 MESSAGES LIST... 4 Open

More information

EISC-Studio3 Manual. Extendable Instruction Set Computer. EISC-Studio3 Manual. English version Advanced Digital Chips Inc.

EISC-Studio3 Manual. Extendable Instruction Set Computer. EISC-Studio3 Manual. English version Advanced Digital Chips Inc. EISC-Studio3 Manual Extendable Instruction Set Computer English version 1.0 2008.10 Advanced Digital Chips Inc. 2 cadvanced Digital Chips Inc. All right reserved. No part of this document may be reproduced

More information

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Integrated Software Framework v1.11 2013-2017 Microchip Technology Inc. All rights reserved. MPLAB Harmony Graphics Composer

More information

Shortcut Keys and Mouse Usage

Shortcut Keys and Mouse Usage Shortcut Keys and Mouse Usage This document lists some useful shortcut keys and mouse/pointer usage that you can use to speed up development in Omnis Studio. Keyboard commands for the standard Omnis menu

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Impress Guide Chapter 11 Setting Up and Customizing Impress

Impress Guide Chapter 11 Setting Up and Customizing Impress Impress Guide Chapter 11 Setting Up and Customizing Impress This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option for printing

More information

Using BlueStep Data Vault with WebDAV

Using BlueStep Data Vault with WebDAV Using BlueStep Data Vault with WebDAV New BlueStep Functionality In order to meet our client s needs and expand our capabilities and services, BlueStep has implemented the use of the WebDAV Internet standard

More information

Managing custom montage files Quick montages How custom montage files are applied Markers Adding markers...

Managing custom montage files Quick montages How custom montage files are applied Markers Adding markers... AnyWave Contents What is AnyWave?... 3 AnyWave home directories... 3 Opening a file in AnyWave... 4 Quick re-open a recent file... 4 Viewing the content of a file... 5 Choose what you want to view and

More information

Scenario Manager User Guide. Release September 2013

Scenario Manager User Guide. Release September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Document Control Number: 9MN12-62110017 Document Number: SMUG-13-FCCM-0017-6.2.1-01 Oracle

More information

New Features Update - October 2018

New Features Update - October 2018 New Features Update - October 2018 V16.04 (Windows) and V16.0.4 (Macintosh) 1. Updated Login window for Kurzweil 3000 for Mac (Web License Subscription Only). Same login, new look! 2. Filter Universal

More information

EMT1250 LABORATORY EXPERIMENT. EXPERIMENT # 6: Quartus II Tutorial and Practice. Name: Date:

EMT1250 LABORATORY EXPERIMENT. EXPERIMENT # 6: Quartus II Tutorial and Practice. Name: Date: EXPERIMENT # 6: Quartus II Tutorial and Practice Name: Date: Equipment/Parts Needed: Quartus II R Web Edition V9.1 SP2 software by Altera Corporation USB drive to save your files Objective: Learn how to

More information

MSBuild Sidekick v2.3 User Manual

MSBuild Sidekick v2.3 User Manual MSBuild Sidekick v2.3 User Manual Page 2 Contents 1. What is MSBuild Sidekick?... 4 2. System Requirements... 4 3. Installation Instructions... 4 4. Purchasing MSBuild Sidekick... 4 5. MSBuild Sidekick

More information

Schoolwires Website How to Access and Modify Content of Teacher Pages

Schoolwires Website How to Access and Modify Content of Teacher Pages Schoolwires Website How to Access and Modify Content of Teacher Pages Accessing Teacher Pages 1. To access your WebPages to modify or change content, go to: http://palisadessd.org 2. In the top right navigation

More information

Microsoft Office Outlook 2016

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

More information

UNIVERSITY OF WOLLONGONG MICROSOFT OUTLOOK

UNIVERSITY OF WOLLONGONG MICROSOFT OUTLOOK UNIVERSITY OF WOLLONGONG MICROSOFT OUTLOOK 2007 EMAIL Table of Contents INTRODUCTION... 2 WHAT S NEW... 2 MOBILE DEVICES... 2 OVERVIEW OF OUTLOOK... 3 NAVIGATION PANE... 3 VIEWING MAIL... 4 READING PANE...

More information

Enhance Salesforce with Code

Enhance Salesforce with Code Salesforce, Spring 17 @salesforcedocs Last updated: April 3, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are other

More information

SSH Device Manager user guide.

SSH Device Manager user guide. SSH Device Manager user guide Contact yulia@switcharena.com Table of Contents Operation... 3 First activation... 3 Adding a device... 4 Adding a script... 5 Adding a group... 7 Assign or remove a device

More information

Lesson 19: Processing a Hierarchical Design

Lesson 19: Processing a Hierarchical Design Lesson 19: Processing a Hierarchical Design Lesson Objectives After you complete this lesson you will be able to: Annotate a hierarchical design Perform a Design Rule Check on a hierarchical design Correct

More information

Contents. Notes Mail Link Page 1

Contents. Notes Mail Link Page 1 Contents Contents... 1 About Notes Mail Link 6... 2 System requirements... 2 Installing Notes Mail Link - Overview... 3 Install Notes Mail Link... 3 Upgrade to newer version of Notes Mail Link... 3 New

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

More information

As you probably know, Microsoft Excel is an

As you probably know, Microsoft Excel is an Introducing Excel Programming As you probably know, Microsoft Excel is an electronic worksheet you can use for a variety of purposes, including the following: maintain lists; perform mathematical, financial,

More information

Release Notes. PREEvision. Version 6.5 SP11 English

Release Notes. PREEvision. Version 6.5 SP11 English Release Notes PREEvision Version 6.5 SP11 English Imprint Vector Informatik GmbH Ingersheimer Straße 24 70499 Stuttgart, Germany Vector reserves the right to modify any information and/or data in this

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

Prerequisites for Eclipse

Prerequisites for Eclipse Prerequisites for Eclipse 1 To use Eclipse you must have an installed version of the Java Runtime Environment (JRE). The latest version is available from java.com/en/download/manual.jsp Since Eclipse includes

More information

Life After Word An Introduction to Microsoft Word The University of Iowa ITS Campus Technology Services Iowa City, IA 52242

Life After Word An Introduction to Microsoft Word The University of Iowa ITS Campus Technology Services Iowa City, IA 52242 Life After Word 2003 An Introduction to Microsoft Word 2007 ITS Campus Technology Services Iowa City, IA 52242 March 2007 2 TABLE OF CONTENTS TABLE OF CONTENTS... 2 INTRODUCTION... 4 WHAT S NEW... 4 GETTING

More information

Creating a robot program

Creating a robot program The simplest way to create a robot program, is to start from one of the four supplied templates (Sample, Iterative, Timed, or Command). Sample is best used for very small sample programs or advanced programs

More information

Outlook Tips & Tricks

Outlook Tips & Tricks Table of Contents CUSTOMIZE THE NAVIGATION PANE... 1 CUSTOMIZE THE READING PANE... 2 USE AND CUSTOMIZE THE TO-DO BAR... 3 USE QUICK FLAGS... 5 CREATE SEARCH FOLDERS... 6 USE AND CUSTOMIZE E-MAIL ALERTS...

More information

Last Updated: FRC 2019 BETA

Last Updated: FRC 2019 BETA Last Updated: 08-01-2018 FRC 2019 BETA Table of Contents VS Code (C++/Java IDE)...3 Alpha Test Info...4 Installing VS Code...5 VS Code Basics and WPILib in VS Code... 15 Creating a new WPILib project in

More information

JSF Tools Reference Guide. Version: M5

JSF Tools Reference Guide. Version: M5 JSF Tools Reference Guide Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features of JSF Tools... 1 2. 3. 4. 5. 1.2. Other relevant resources on the topic... 2 JavaServer Faces Support... 3 2.1. Facelets

More information

ADD/EDIT A JOURNAL ENTRY

ADD/EDIT A JOURNAL ENTRY ADD/EDIT A JOURNAL ENTRY 1. In Intacct, journal entries are posted into specific journals, which function to categorically separate different types of journal entries. Journal entries can post to any of

More information

MPLAB X IDE PROJECTS Microchip Technology Incorporated. All Rights Reserved DEV Slide 68

MPLAB X IDE PROJECTS Microchip Technology Incorporated. All Rights Reserved DEV Slide 68 MPLAB X IDE PROJECTS 2013 Microchip Technology Incorporated. All Rights Reserved. 17002 DEV Slide 68 MPLAB X IDE Projects What is a project? Definition A Project is defined by a collection of files within

More information

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations Part I Integrated Development Environment Chapter 1: A Quick Tour Chapter 2: The Solution Explorer, Toolbox, and Properties Chapter 3: Options and Customizations Chapter 4: Workspace Control Chapter 5:

More information

USING THE TEMPLATES FOR WORD 2003

USING THE TEMPLATES FOR WORD 2003 USING THE TEMPLATES FOR WORD 2003 1 INTRODUCTION TO THE MUNICIPAL EMERGENCY PLAN TEMPLATE... 2 2 WHEN YOU FIRST OPEN THE DOCUMENT... 3 2.1 DOCUMENT PROTECTION AND NAVIGATING THE DOCUMENT 3 2.2 FORM FIELD

More information

User Guide. DU _v01f January 2004

User Guide. DU _v01f January 2004 DU-01057-001_v01f January 2004 User Guide Table of Contents Chapter 1. About the FX Composer...1 1.1. System Requirements...3 1.2. References and Recommended Reading...3 Chapter 2. Using the FX Composer...4

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM E&P SOLUTIONS Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Petrel Studio Part 1 The Petrel Studio was new to Petrel 2011, was augmented with new features in Petrel 2012 and contains a variety of

More information

1. WELDMANAGEMENT PRODUCT

1. WELDMANAGEMENT PRODUCT Table of Contents WeldManagement Product.................................. 3 Workflow Overview........................................ 4 Weld Types.............................................. 5 Weld

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

Budget Entry Documents Supporting Attachments Work Instructions

Budget Entry Documents Supporting Attachments Work Instructions Budget Entry Documents Supporting Attachments Work Instructions 1 Work with Attachments in the FMBB, FMEDD, or FMEDDW Transactions 1.1 Select or enter the t code FMBB, complete the required fields, and

More information

JUSTICE AV SOLUTIONS LOUISVILLE, KENTUCKY USER MANUAL 3.1

JUSTICE AV SOLUTIONS LOUISVILLE, KENTUCKY USER MANUAL 3.1 JUSTICE AV SOLUTIONS LOUISVILLE, KENTUCKY USER MANUAL 3.1 Table of Contents 1 Introduction... 3 2 Installation... 4 2.1 Minimum System Requirements... 4 2.2 Installation... 4 3 Logging In... 6 3.1 New

More information

Content Modeling for Administrators

Content Modeling for Administrators Content Modeling for Administrators Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

A Guided Tour of Doc-To-Help

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

More information

Copyright Notice SmartBear Software. All rights reserved.

Copyright Notice SmartBear Software. All rights reserved. Copyright Notice AQtime, as described in this on-line help system, is licensed under the software license agreement distributed with the product. The software may be used or copied only in accordance with

More information

Analyzer and Reports Guide

Analyzer and Reports Guide MadCap Software Analyzer and Reports Guide Flare 2017 r2 Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in

More information

Navigating Viewpoint V6 Exploring the Viewpoint Main Menu

Navigating Viewpoint V6 Exploring the Viewpoint Main Menu Navigating Viewpoint V6 Exploring the Viewpoint Main Menu Table of Contents About this Course 3 Viewpoint Folder Structure 4 File Menu 5 View Menu 6 Options Menu 7 User Options 7 Help Menu 9 Support 9

More information

CS-Studio Display Builder

CS-Studio Display Builder CS-Studio Display Builder Tutorial presented: Spring 2017 EPICS Collaboration Meeting at KURRI, Osaka, Japan Megan Grodowitz, Kay Kasemir (kasemir@ornl.gov) Overview Display Builder replaces OPI Builder

More information

Getting started 7. Writing macros 23

Getting started 7. Writing macros 23 Contents 1 2 3 Getting started 7 Introducing Excel VBA 8 Recording a macro 10 Viewing macro code 12 Testing a macro 14 Editing macro code 15 Referencing relatives 16 Saving macros 18 Trusting macros 20

More information

XMLInput Application Guide

XMLInput Application Guide XMLInput Application Guide Version 1.6 August 23, 2002 (573) 308-3525 Mid-Continent Mapping Center 1400 Independence Drive Rolla, MO 65401 Richard E. Brown (reb@usgs.gov) Table of Contents OVERVIEW...

More information

Getting Started With ProjectSymbols Lite

Getting Started With ProjectSymbols Lite Getting Started With ProjectSymbols Lite Once you have completed the installation for ProjectSymbols Lite, start up AutoCAD. You will be prompted to type in your ProjectSymbols License Code. If you are

More information