Technical Strategy and Solutions BASE PROFESSIONAL. V e r s i o n 1. 0 P a g e 1

Size: px
Start display at page:

Download "Technical Strategy and Solutions BASE PROFESSIONAL. V e r s i o n 1. 0 P a g e 1"

Transcription

1 BASE PROFESSIONAL V e r s i o n 1. 0 P a g e 1

2 Contents 1 Overview STARTING PROFESSIONAL Professional Window Menus FILE TYPES WITH PROFESSIONAL PROFESSIONAL TOOLBARS CREATING A NEW SURVEY Metadata Web - Routing Section OPENING AN EXISTING SURVEY SAVING AND CLOSING A SURVEY TOOLS IN DETAIL MetaData or MDM Explorer Locals Pane Using the Expressions Pane Breakpoints Change Control V e r s i o n 1. 0 P a g e 2

3 1 OVERVIEW Professional is a complete set of tools that supports the building of automated market research processes. Professional includes an integrated development environment (IDE) that enables you to create, edit, run, and debug PASW / Dimensions scripts. In simple terms this is computer software that assists programmers in developing scripts. Two additional options are available for Professional: The Interview Option includes components that enable you to develop and test interviews, and activate them in Interviewer Server. The Tables Option includes components that enable you to create batch tables using a script. 1.1 STARTING PROFESSIONAL To launch Professional, follow the steps below: Start (From the bottom left corner of Windows) All Programs IBM SPSS Data Collection 6 Base Professional Base Professional V e r s i o n 1. 0 P a g e 3

4 1.1.1 Professional Window The individual panes are described in more detail in the table below. Tab Panel Edit Description This is the main part of the desktop, where you edit your files. If you open an interview script (.mdd) file, the Edit pane is separated into a Metadata section and one or more Routing sections. By default, the individual sections can be selected by clicking on the tabs at the bottom of the Edit pane. Breakpoints Lists the breakpoints that have been set in a script. When you are debugging, you use breakpoints to indicate points in your code at which you want to suspend the running of the script--for example, so that you can V e r s i o n 1. 0 P a g e 4

5 Tab Panel Description then step through the following lines. Output Displays status and other information when you run a script using F5. Use this pane to evaluate an expression or inspect the value of a object property when you are debugging a script. You can also use this pane to change the value of a variable. You can also use the Expression pane to Expressions change the value of a variable. For example, if you type a = 15 into the text box and press Enter (or alternatively, click Execute), Professional will set the value of the variable to 15. Find Replace Browser Workspace Metadata Types Functions Locals Auto Answer Repository Help Use to search for text. Use to search for text and replace with a different text. Use this pane to interact with the interview when you run an interview script (.mdd) file. Lists the files in the current workspace. The workspace feature is particularly useful when you are working on a number of linked files--for example, a data management script (.dms file) that has a number of associated Include files. You can add new and existing files to the workspace by right-clicking in the Workspace pane and choosing Add New Item to Workspace and Add Existing Item to Workspace, respectively. See the topic Using the Workspace Feature for more information. Use to browse the questions, variables, and categories in a metadata document (.mdd) file. This is useful when you need to refer to individual variables and categories in your script. Similar to the Visual Basic Object Browser, this shows the properties and methods of all of the default objects and details of the associated enumerated constants. Similar information is shown whenever possible for objects created in the script. When you click on an object, its properties and methods are listed. To insert a property or method into your code, rightclick it, and from the shortcut menu, choose Add member. Lists all of the functions in the Data Collection Function Library, showing brief details of their parameters. To insert a function into your code, rightclick it, and from the shortcut menu, choose Add Function. For detailed information about the functions, see PASW Data Collection Function Library. Shows the values of the variables in your script when you are debugging it. Shows a list of the questions that have been answered when you run an interview script (.mdd) file in Auto Answer mode. Shows all currently defined Question Repositories. You can navigate for topics and survey assets, and add asset metadata and routing information to the working.mdd file. Shows context-sensitive help topics. To access context-sensitive help, select an element of your script and press F1, See the topic Using Context- Sensitive Help for more information. V e r s i o n 1. 0 P a g e 5

6 1.1.2 Menus We will quickly get you familiar with the menus that exist. You will get to see more of them throughout the course. Menu File Edit View Debug Tools Description This is a standard file menu with features like open, close and new. This is a standard edit menu with features like cut, copy, paste and undo. You can control what toolbars and Panels you can see from this menu. This menu contains items related to the testing of scripts or surveys. This menu provides access to additional tools and macros. Also the access point to Professional options. Window The Windows menu allows you to switch between open scripts and surveys. Help The help menu allows you to open the DDL from inside Professional. 1.2 FILE TYPES WITH PROFESSIONAL Professional has been designed for working with PASW / Dimensions script files of the following types: Interview Script (.mdd) files These scripts are used to create interviews that can be activated in version 3.0 (or later) of Interviewer Server. Interview scripts have a Metadata section, and one or more Routing sections. The Metadata section is used to define the questions that will be asked during the interview and is written in mrscriptmetadata. A Routing section is written in mrscriptbasic and defines which of the questions will be asked during an interview, and in what order they will be asked. You can have individual routing sections for different interview environments, for example, "Web" and "Paper". mrscriptbasic (.mrs) files. mrscriptbasic is a programming language that enables scriptable access to PASW / Dimensions components. You would typically use a standalone mrscriptbasic script to perform tasks that do not involve transforming data, such as creating reports, topline tables and charts. Sometimes you might develop a mrscriptbasic script for use as an Include file in one of the Event sections of a data management script. You can run and debug your mrscriptbasic scripts from the Professional IDE or by using the mrscript Command Line Runner. V e r s i o n 1. 0 P a g e 6

7 Data Management Script (.dms) files These scripts are used for performing data management tasks, such as cleaning and transferring data, creating derived variables for use during analysis, and setting up weighting schemes. A data management script has two or more different sections, which have different coding rules and use different technologies. For example, the InputDataSource section uses property definition and SQL syntax, whereas the Metadata section is written in mrscriptmetadata, and the Event sections are written in mrscriptbasic. A data management script is particularly useful when you want to clean and transfer data and create derived variables, because it handles the connections to the input and output data sources, the merging of the metadata, and gives you scriptable access to the case data (in the OnNextCase Event section). You can run your data management scripts from the Professional IDE or by using the DMS Runner command prompt utility. In addition to PASW / Dimensions scripts, you can also use Professional to create and edit the following types of files: Text (.txt) files HTML files XML files Rich text format (.rtf) files You can also open other types of text files, such as log files. 1.3 PROFESSIONAL TOOLBARS Details can be found at mk:@msitstore:c:\program%20files\spssinc\paswdatacollection5.6\ddl\documentati on\ddl.chm::/professional_toolbars.htm 1.4 CREATING A NEW SURVEY If you do not have Professional open, please launch it now. 1. From the File menu choose: New > File The New File dialog shows you a list of available file types. Click the item labeled Metadata File. 3. In the bottom section of the New File dialog is the File Name, this probably reads Untitled1.mdd. Change this to MyFirstInterview.mdd and click the Open button. 4. Professional has created your new file. A Metadata file, also referred to as the MDD, is the name of the survey file type. It contains all your questions, responses, languages and survey logic. The survey edit is now available. On the bottom left corner you will see two tabs, Metadata and Web. V e r s i o n 1. 0 P a g e 7

8 1.4.1 Metadata The Metadata section is where you will define the questions and responses that will make up your survey. The Metadata editor should look like below: Metadata(en-GB, Question, label) End Metadata Always having three arguments passed on the Metadata function: en-gb: the locale or base laungauge for the interview Question: is the context Label is the label type NOTE: It is not mandatory to specify the language, context, or label type, as defaults will be used if they are not provided. See below table for detailed explanation. Positional Parameter Language(en-US) Context (Question) LabelType DataSource (NOT in IOM) Description The language portion of the line (shown here as en-us) will vary according to the regional settings for your computer. For example, if your regional settings are set for the UK you will see en-gb instead. Defines the current user context for the metadata. User contexts define different usages for the metadata, so that different texts and custom properties can be used depending on how the metadata is being used. For example, the Question user context is typically used to define the default texts to be used when interviewing and the Analysis user context is typically used to define shorter texts for use when analyzing the response data. Defines the current label type. Label types enable different types of labels to be created for different types of information. For example, the default label type of Label is used for question and category texts and variable descriptions, and the Instruction label type is used for interviewer instructions. This parameter, used only when the Metadata section is part of a Data Management Script (.dms) file, identifies the data source to which the Metadata section relates. You specify the data source using the name defined for the InputDataSource section in the Data Management Script. V e r s i o n 1. 0 P a g e 8

9 1.4.2 Web - Routing Section The Web Routing section is where you define the order in which questions are asked and the circumstances in which they should be asked. A script can have different Routing sections for different contexts, such as Web, CATI and Paper. The default context is Web, so you see a Web Routing tab. When initially created the Routing section of an MDD contains the following script: Routing(Web) End Routing 1.5 OPENING AN EXISTING SURVEY From the File menu choose: Open > File Browse to the required file and click the open button in the bottom right hand corner NOTE: Notice that inside Professional along the top you still have your "MyFirstInterview" file open. You can switch between surveys by clicking on the tabs at the top of the editing window. 1.6 SAVING AND CLOSING A SURVEY To save your file: 1. From the File menu choose: Save. If this is a new file it will open a standard Save As box for you to choose the location to save the file in. 2. Alternatively from the File menu choose: Save As to save your file with a different name or to a different location. This will open a standard Save As box. When you run a survey it will also check whether it has been saved since you last made changes, and if not it will try to save it. To close your file: 1. From the File menu choose: Close 2. If you have made edits since you last saved your file you will be shown a dialog box asking if you want to save your changes. If you click Yes it will open a standard Save As box. 1.7 TOOLS IN DETAIL MetaData or MDM Explorer MDM explorer use to explore the variable and object in MDD. V e r s i o n 1. 0 P a g e 9

10 To Open Search for shortcut on desktop (see below). Double click the icon. If no Shortcut on desktop then check Program Files\SPSSInc\PASWDataCollection5.6\DDL\Code\Tools\VB6\MDM Explorer\MDM Explorer.exe" Explorer window Open file file -> Open Document There is a short delay while the file is loaded. You can now explore the structure of MDM Document. For example, to display the objects that correspond to the questionnaire items, expand the Fields folder. MDM Explorer displays a never-ending loop for Variables and VariableInstances - A VariableInstance object has a pointer to a Variable object and the Variable object has a collection of related VariableInstance objects. MDM Explorer merely reflects the properties on each object. This means that you can open an endless list of Variable and VariableInstance objects. V e r s i o n 1. 0 P a g e 10

11 1.7.2 Locals Pane While debugging a script, Professional displays in the Locals pane the current value of all of the variables in the current scope. In addition, Professional shows in the Locals pane the current value of the properties of the objects in the current scope. You can expand and inspect objects by clicking the plus icon next to the object, but note that an object can only be expanded while the script is halted during debugging, not when the script has completed. V e r s i o n 1. 0 P a g e 11

12 1.7.3 Using the Expressions Pane You can use the Expressions pane to evaluate an expression or to inspect the value of an object's properties. There are two ways of doing this: 1. Type the expression in the text box and click Evaluate. 2. Type a question mark, then type the expression and press Enter. For example, type?a and press Enter to display the value of the a variable. You can also re-evaluate an expression that you previously evaluated by selecting the text of the expression in the text box and clicking Evaluate. For example, here is the Expressions pane after using the Sqrt function to evaluate the square root of the a variable: V e r s i o n 1. 0 P a g e 12

13 Note that sometimes you might need to resize the pane in order to be able to see the output. Here is the Expressions pane after evaluating the label of q2 : You can also use the Expression pane to change the value of a variable. For example, if you type a = 15 into the text box and press Enter (or alternatively, click Execute), Professional will set the value of the a variable to 15. The Expression pane can also be used to declare variables, which you can then use to store the current value of another variable when you are debugging a script. For example, type dim temp in the text box and press Enter to declare a variable called temp. Then assign the value of a to temp by typing temp = a and pressing Enter. To restore the original value of a at any point, type a = temp and press Enter Breakpoints Breakpoints are added into code at the points where you want the execution to stop/hault, so that you can step through the following lines. This is particularly useful when you have a rough idea where the problem lies. How to add - either of ways listed below Choose Toggle Breakpoints from the Debug menu. Press Ctrl+B or F9 Click the Edit pane to the left of the line number. V e r s i o n 1. 0 P a g e 13

14 Professional then highlights the line in red and adds the breakpoint to the list in the Breakpoints pane. To run the code up to the next breakpoint, press F5 or choose Start or Continue from the Debug menu. To run single Line step to following code press F10. To clear a breakpoint, follow any one of below steps:- Choose Toggle Breakpoints from the Debug menu. Press Ctrl+B or F9 Click the Edit pane to the left of the line number. To clear all breakpoints, press Ctrl+Shift+F9 or choose Clear All Breakpoints from the Debug menu. V e r s i o n 1. 0 P a g e 14

15 2 CHANGE CONTROL This Document may have been through various revisions. This table shows updates over time and details any specific updates Change Summary Date Doc Change detail Version Document Launch 02 Apr 2012 V1.0 Initial document launch V e r s i o n 1. 0 P a g e 15

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

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

Zend Studio 3.0. Quick Start Guide

Zend Studio 3.0. Quick Start Guide Zend Studio 3.0 This walks you through the Zend Studio 3.0 major features, helping you to get a general knowledge on the most important capabilities of the application. A more complete Information Center

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

Content Publisher User Guide

Content Publisher User Guide Content Publisher User Guide Overview 1 Overview of the Content Management System 1 Table of Contents What's New in the Content Management System? 2 Anatomy of a Portal Page 3 Toggling Edit Controls 5

More information

Getting Started (1.8.7) 9/2/2009

Getting Started (1.8.7) 9/2/2009 2 Getting Started For the examples in this section, Microsoft Windows and Java will be used. However, much of the information applies to other operating systems and supported languages for which you have

More information

Work Smart: Microsoft Office 2010 User Interface

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

More information

2 Getting Started. Getting Started (v1.8.6) 3/5/2007

2 Getting Started. Getting Started (v1.8.6) 3/5/2007 2 Getting Started Java will be used in the examples in this section; however, the information applies to all supported languages for which you have installed a compiler (e.g., Ada, C, C++, Java) unless

More information

BDM Hyperion Workspace Basics

BDM Hyperion Workspace Basics BDM Hyperion Workspace Basics Contents of this Guide - Toolbars & Buttons Workspace User Interface 1 Standard Toolbar 3 Explore Toolbar 3 File extensions and icons 4 Folders 4 Browsing Folders 4 Root folder

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

WPS Workbench. user guide. "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs"

WPS Workbench. user guide. To help guide you through using the WPS user interface (Workbench) to create, edit and run programs WPS Workbench user guide "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs" Version: 3.1.7 Copyright 2002-2018 World Programming Limited www.worldprogramming.com

More information

IBM ILOG OPL IDE Reference

IBM ILOG OPL IDE Reference IBM ILOG OPL V6.3 IBM ILOG OPL IDE Reference Copyright International Business Machines Corporation 1987, 2009 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP

More information

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials 2 About the Tutorial With TestComplete, you can test applications of three major types: desktop, web and mobile: Desktop applications - these

More information

Infor LN Studio Application Development Guide

Infor LN Studio Application Development Guide Infor LN Studio Application Development Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

WPS Workbench. user guide. To help guide you through using WPS Workbench to create, edit and run programs. Workbench user guide Version 3.

WPS Workbench. user guide. To help guide you through using WPS Workbench to create, edit and run programs. Workbench user guide Version 3. WPS Workbench user guide To help guide you through using WPS Workbench to create, edit and run programs Version: 3.3.4 Copyright 2002-2018 World Programming Limited www.worldprogramming.com Contents Introduction...7

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

TABLE OF CONTENTS. 2 ADDING, REMOVING, AND RESIZING FRAMES IN A FLEX DOCUMENT. 4 ADDING SHEETS. 6 STACKING APPS. 8 SHOWING/HIDING APP TOOLBARS.

TABLE OF CONTENTS. 2 ADDING, REMOVING, AND RESIZING FRAMES IN A FLEX DOCUMENT. 4 ADDING SHEETS. 6 STACKING APPS. 8 SHOWING/HIDING APP TOOLBARS. TABLE OF CONTENTS TABLE OF CONTENTS... 2 ADDING, REMOVING, AND RESIZING FRAMES IN A FLEX DOCUMENT... 4 ADDING SHEETS... 6 STACKING APPS... 8 SHOWING/HIDING APP TOOLBARS... 9 DISPLAYING THE DOCUMENT TOOLBAR...

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

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

Lab 1: Getting familiar with LabVIEW: Part I

Lab 1: Getting familiar with LabVIEW: Part I Lab 1: Getting familiar with LabVIEW: Part I The objective of this first lab is to provide an initial hands-on experience in building a VI. For detailed explanations of the LabVIEW features mentioned here,

More information

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2018 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2018 MarkLogic Corporation. All rights reserved. Query Console User Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-7, September 2018 Copyright 2018 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User Guide

More information

BasicScript 2.25 User s Guide. May 29, 1996

BasicScript 2.25 User s Guide. May 29, 1996 BasicScript 2.25 User s Guide May 29, 1996 Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

Precision Consulting 228 PARK AVENUE SOUTH NEW YORK, NY PHONE: FAX:

Precision Consulting 228 PARK AVENUE SOUTH NEW YORK, NY PHONE: FAX: Precision Consulting 228 PARK AVENUE SOUTH NEW YORK, NY 10003-1502 PHONE: 646-553-4730 FAX: 646-304-9595 Overview of User Interface Basic Project Pad Creating a Project To create a new project: 1.Click

More information

Manage Files. Accessing Manage Files

Manage Files. Accessing Manage Files 1 Manage Files The Manage Files tool is a file management system for your course. You can use this tool to organize and upload files associated with your course offering. We recommend that you organize

More information

Appendix J: Using Shortcut Keys and Shortcut Menus

Appendix J: Using Shortcut Keys and Shortcut Menus Appendix J: Using Shortcut Keys and Shortcut Menus Introduction This appendix covers shortcuts to many of the menu options, dialog boxes, and commands used in PC-DMIS. Using shortcuts will speed up your

More information

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Query Console User Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-1, May, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User Guide 1.0

More information

Workshare Compare 9.5

Workshare Compare 9.5 Workshare Compare 9.5 User Guide Workshare 9.5.3 April 2018 9.5.787.3184 Workshare Compare 9.5 User Guide Table of Contents Chapter 1: Introducing Workshare Compare...8 What is Workshare Compare?... 9

More information

Intro to MS Visual C++ Debugging

Intro to MS Visual C++ Debugging Intro to MS Visual C++ Debugging 1 Debugger Definition A program used to control the execution of another program for diagnostic purposes. Debugger Features / Operations Single-Stepping 100011101010101010

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

StarTeam File Compare/Merge StarTeam File Compare/Merge Help

StarTeam File Compare/Merge StarTeam File Compare/Merge Help StarTeam File Compare/Merge 12.0 StarTeam File Compare/Merge Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2011 Micro Focus IP Development Limited. All Rights Reserved. Portions

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

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

Eclipse Tutorial. For Introduction to Java Programming By Y. Daniel Liang

Eclipse Tutorial. For Introduction to Java Programming By Y. Daniel Liang Eclipse Tutorial For Introduction to Java Programming By Y. Daniel Liang This supplement covers the following topics: Getting Started with Eclipse Choosing a Perspective Creating a Project Creating a Java

More information

Lectora Video Editor Information Center

Lectora Video Editor Information Center Lectora Video Editor Information Center - 1 - Welcome to the Lectora Video Editor Information Center The Video Editor Information Center was designed so that you can quickly find the information you need

More information

3 Getting Started with Objects

3 Getting Started with Objects 3 Getting Started with Objects If you are an experienced IDE user, you may be able to do this tutorial without having done the previous tutorial, Getting Started. However, at some point you should read

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

PENTAHO - NAVIGATION

PENTAHO - NAVIGATION PENTAHO - NAVIGATION http://www.tutorialspoint.com/pentaho/pentaho_navigation.htm Copyright tutorialspoint.com This chapter will provide a brief introduction on the user interfaces available in Pentaho

More information

SharePoint 2010 Instructions for Users

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

More information

Enterprise Architect. User Guide Series. Model Navigation

Enterprise Architect. User Guide Series. Model Navigation Enterprise Architect User Guide Series Model Navigation How to navigate repositories? In Sparx Systems Enterprise Architect the Project Browser shows model structure. Model Searches and browsers locate

More information

Quark XML Author for FileNet 2.5 with BusDocs Guide

Quark XML Author for FileNet 2.5 with BusDocs Guide Quark XML Author for FileNet 2.5 with BusDocs Guide CONTENTS Contents Getting started...6 About Quark XML Author...6 System setup and preferences...8 Logging in to the repository...8 Specifying the location

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

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

Patrice M. Anderson Instructional Designer

Patrice M. Anderson Instructional Designer Patrice M. Anderson Instructional Designer Portfolio Sample Instructor-Led Training This sample contains the ToC and one chapter from the instructor-led student workbook for HP Quality Center (QC) software.

More information

Anatomy of a Window (Windows 7, Office 2010)

Anatomy of a Window (Windows 7, Office 2010) Anatomy of a Window (Windows 7, Office 2010) Each window is made up of bars, ribbons, and buttons. They can be confusing because many of them are not marked clearly and rely only on a small symbol to indicate

More information

Lectora Audio Editor Information Center

Lectora Audio Editor Information Center Lectora Audio Editor Information Center - 1 - Welcome to the Lectora Audio Editor Information Center The Audio Editor Information Center was designed so that you can quickly find the information you need

More information

Microsoft Office 2013 (or Office) is a collection of software programs.

Microsoft Office 2013 (or Office) is a collection of software programs. 1 Microsoft Office 2013 (or Office) is a collection of software programs. Program Function Word - enables you to create documents such as letters and reports Excel - lets you work with numbers to prepare

More information

BASIC USER TRAINING PROGRAM Module 5: Test Case Development

BASIC USER TRAINING PROGRAM Module 5: Test Case Development BASIC USER TRAINING PROGRAM Module 5: Test Case Development Objective Student will have an understanding of how to create, edit and execute a Test Case from Develop a Test Case Activity Page. Student will

More information

Reporting Center. Primary (Stand-Alone) Interface

Reporting Center. Primary (Stand-Alone) Interface Reporting Center The Reporting Center is where you will go to run or create reports on projects. It can be accessed in any of the follow ways, each with a slightly different user interface and functionality.

More information

Easy Windows Working with Disks, Folders, - and Files

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

More information

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

Workshare Professional 9.5

Workshare Professional 9.5 Workshare Professional 9.5 User Guide August 2017 9.5.787.202 Workshare Professional 9.5 User Guide Table of Contents Chapter 1: Introducing Workshare Professional... 9 What is Workshare Professional?...

More information

Quark XML Author September 2016 Update for Platform with Business Documents

Quark XML Author September 2016 Update for Platform with Business Documents Quark XML Author 05 - September 06 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository... Creating a new document from

More information

Getting Started. Microsoft QUICK Source 7

Getting Started. Microsoft QUICK Source 7 Microsoft QUICK Windows Source 7 Getting Started The Windows 7 Desktop u v w x u Icon links to a program, file, or folder that is stored on the desktop. v Shortcut Icon links to a program, file, or folder

More information

DiskBoss DATA MANAGEMENT

DiskBoss DATA MANAGEMENT DiskBoss DATA MANAGEMENT Duplicate Files Search Version 9.1 Apr 2018 www.diskboss.com info@flexense.com 1 1 DiskBoss Overview DiskBoss is an automated, policy-based data management solution allowing one

More information

Quark XML Author October 2017 Update for Platform with Business Documents

Quark XML Author October 2017 Update for Platform with Business Documents Quark XML Author 05 - October 07 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository...3 Creating a new document from

More information

NetBeans Tutorial. For Introduction to Java Programming By Y. Daniel Liang. This tutorial applies to NetBeans 6, 7, or a higher version.

NetBeans Tutorial. For Introduction to Java Programming By Y. Daniel Liang. This tutorial applies to NetBeans 6, 7, or a higher version. NetBeans Tutorial For Introduction to Java Programming By Y. Daniel Liang This tutorial applies to NetBeans 6, 7, or a higher version. This supplement covers the following topics: Getting Started with

More information

Workshare Compare 9.5

Workshare Compare 9.5 Workshare Compare 9.5 User Guide Workshare 9.5.2 February 2018 9.5.787.333 Workshare Compare 9.5 User Guide Table of Contents Chapter 1: Introducing Workshare Compare...8 What is Workshare Compare?...

More information

Enterprise Architect. User Guide Series. Portals. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Portals. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Portals Author: Sparx Systems Date: 19/03/2018 Version: 1.0 CREATED WITH Table of Contents Portals 3 Perspective Portal 6 Workspace Portal 7 Window Portal 9 Status

More information

IBM Rational Rhapsody Gateway Add On. User Guide

IBM Rational Rhapsody Gateway Add On. User Guide User Guide Rhapsody IBM Rational Rhapsody Gateway Add On User Guide License Agreement No part of this publication may be reproduced, transmitted, stored in a retrieval system, nor translated into any

More information

Talend Open Studio for MDM Web User Interface. User Guide 5.6.2

Talend Open Studio for MDM Web User Interface. User Guide 5.6.2 Talend Open Studio for MDM Web User Interface User Guide 5.6.2 Talend Open Studio for MDM Web User Interface Adapted for v5.6.2. Supersedes previous releases. Publication date: May 12, 2015 Copyleft This

More information

Drools Tools Reference Guide. Version: CR1

Drools Tools Reference Guide. Version: CR1 Drools Tools Reference Guide Version: 5.0.0.CR1 1. Introduction... 1 1.1. What is Drools?... 1 1.2. Drools Tools Key Features... 1 1.3. Other relevant resources on the topic... 2 2. Creating a New Drools

More information

Reviewing Changes. 5. Click Search. A list of changes that include the specified word or words is displayed in the lower text area.

Reviewing Changes. 5. Click Search. A list of changes that include the specified word or words is displayed in the lower text area. COMPARING DOCUMENTS USING WORKSHARE COMPARE 5. Click Search. A list of changes that include the specified word or words is displayed in the lower text area. Selecting a change in the search results highlights

More information

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide PROGRAMMING WITH REFLECTION: VISUAL BASIC USER GUIDE WINDOWS XP WINDOWS 2000 WINDOWS SERVER 2003 WINDOWS 2000 SERVER WINDOWS TERMINAL SERVER CITRIX METAFRAME CITRIX METRAFRAME XP ENGLISH Copyright 1994-2006

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Reading: Managing Files in Windows XP

Reading: Managing Files in Windows XP Student Resource 13.4a Reading: Managing Files in Windows XP Directions: All recent versions of Windows (XP, Vista, Windows 7) have fairly similar ways of managing files, but their graphic user interfaces

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Getting Started with OneNote 2016

Getting Started with OneNote 2016 1 Getting Started with OneNote 2016 Understanding OneNote 2016 Concepts Getting Started Managing Notebooks Navigating and Viewing Notebooks Learning Objective: Explore the user interface, create, save,

More information

Content Author's Reference and Cookbook

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

More information

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

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, November 2017

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, November 2017 News in RSA-RTE 10.1 updated for sprint 2017.46 Mattias Mohlin, November 2017 Overview Now based on Eclipse Neon.3 (4.6.3) Many general improvements since Eclipse Mars Contains everything from RSARTE 10

More information

EUSurvey 1.4 Editor Guide

EUSurvey 1.4 Editor Guide EUSurvey 1.4 Editor Guide What is the editor? The editor is used to create a You can use it to add questions and other elements to your Overview The editor consists of five main areas: Figure 1 General

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Rapid SQL 7.5 Evaluation Guide. Published: September 28, 2007

Rapid SQL 7.5 Evaluation Guide. Published: September 28, 2007 Rapid SQL 7.5 Evaluation Guide Published: September 28, 2007 Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. This is a preliminary document and may be changed

More information

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, April 2017

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, April 2017 News in RSA-RTE 10.1 updated for sprint 2017.16 Mattias Mohlin, April 2017 Overview Now based on Eclipse Neon.3 (4.6.3) Many general improvements since Eclipse Mars Contains everything from RSARTE 10 and

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Getting Started with Tally.Developer 9

Getting Started with Tally.Developer 9 Getting Started with Tally.Developer 9 The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions,

More information

Application Notes for Deploying a VoiceXML Application Using Avaya Interactive Response and Audium Studio - Issue 1.0

Application Notes for Deploying a VoiceXML Application Using Avaya Interactive Response and Audium Studio - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Deploying a VoiceXML Application Using Avaya Interactive Response and Audium Studio - Issue 1.0 Abstract These Application Notes provide

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

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

More information

MetaMap Manager User Guide

MetaMap Manager User Guide MetaMap Manager User Guide Release 8.1.3 November 2013 IKAN Solutions N.V. Schaliënhoevedreef 20A B-2800 Mechelen BELGIUM Copyright 2013, IKAN Solutions N.V. No part of this document may be reproduced

More information

WORKSHARE PROFESSIONAL 9

WORKSHARE PROFESSIONAL 9 Workshare Knowledge Base WORKSHARE PROFESSIONAL 9 USER GUIDE April 2016 9.0.0.6100 WORKSHARE PROFESSIONAL USER GUIDE COMPANY INFORMATION Workshare Professional User Guide Workshare Ltd. (UK) 20 Fashion

More information

Enterprise Architect. User Guide Series. Model Navigation. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Model Navigation. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Model Navigation Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents Model Navigation 4 Navigate: Exploring Your Model 5 The Project

More information

WORKSHARE 9 & NETDOCUMENTS

WORKSHARE 9 & NETDOCUMENTS WORKSHARE 9 & NETDOCUMENTS User Guide August 2016 9.0.0 7117 Company Information Workshare 9 & NetDocuments User Guide Workshare Ltd. (UK) 20 Fashion Street London E1 6PX UK Workshare Website: www.workshare.com

More information

IBM Rational Rhapsody Gateway Add On. Tagger Manual

IBM Rational Rhapsody Gateway Add On. Tagger Manual Tagger Manual Rhapsody IBM Rational Rhapsody Gateway Add On Tagger Manual License Agreement No part of this publication may be reproduced, transmitted, stored in a retrieval system, nor translated into

More information

Module 3: Working with C/C++

Module 3: Working with C/C++ Module 3: Working with C/C++ Objective Learn basic Eclipse concepts: Perspectives, Views, Learn how to use Eclipse to manage a remote project Learn how to use Eclipse to develop C programs Learn how to

More information

Module Road Map. 7. Version Control with Subversion Introduction Terminology

Module Road Map. 7. Version Control with Subversion Introduction Terminology Module Road Map 1. Overview 2. Installing and Running 3. Building and Running Java Classes 4. Refactoring 5. Debugging 6. Testing with JUnit 7. Version Control with Subversion Introduction Terminology

More information

IBM i Debugger. Overview Service Entry Points Debugger Functions Attach to an IBM i Job Launch Configurations and Settings

IBM i Debugger. Overview Service Entry Points Debugger Functions Attach to an IBM i Job Launch Configurations and Settings 1 IBM i Debugger IBM i Debugger Overview Service Entry Points Debugger Functions Attach to an IBM i Job Launch Configurations and Settings 2 Integrated Debugger - Overview RPG, COBOL, CL, C, and C++ IBM

More information

Logi Ad Hoc Reporting Management Console Usage Guide

Logi Ad Hoc Reporting Management Console Usage Guide Logi Ad Hoc Reporting Management Console Usage Guide Version 12.1 July 2016 Page 2 Contents Introduction... 5 Target Audience... 5 System Requirements... 6 Components... 6 Supported Reporting Databases...

More information

Function. Description

Function. Description Function Check In Get / Checkout Description Checking in a file uploads the file from the user s hard drive into the vault and creates a new file version with any changes to the file that have been saved.

More information

With Dreamweaver CS4, Adobe has radically

With Dreamweaver CS4, Adobe has radically Introduction to the Dreamweaver Interface With Dreamweaver CS4, Adobe has radically reengineered the Dreamweaver interface to provide a more unified experience across all of the Creative Suite applications.

More information

Configuration Export and Import

Configuration Export and Import This chapter includes the following sections:, page 1 From the Export & Import, you can schedule configuration backup for Cisco UCS Central and the registered Cisco UCS Domains. You can schedule export

More information

Macros in Excel: Recording, Running, and Editing

Macros in Excel: Recording, Running, and Editing Macros in Excel: Recording, Running, and Editing This document provides instructions for creating, using, and revising macros in Microsoft Excel. Simple, powerful, and easy to customize, Excel macros can

More information

IBM Rational Rhapsody Gateway Add On. User Manual

IBM Rational Rhapsody Gateway Add On. User Manual User Manual Rhapsody IBM Rational Rhapsody Gateway Add On User Manual License Agreement No part of this publication may be reproduced, transmitted, stored in a retrieval system, nor translated into any

More information

Introduction to Programming

Introduction to Programming Introduction to Programming Course ISI-1329 - Three Days - Instructor-Led Introduction This three-day, instructor-led course introduces students to computer programming. Students will learn the fundamental

More information

QuickStart Across Personal Edition v5.5 (Revision: November 8, 2012)

QuickStart Across Personal Edition v5.5 (Revision: November 8, 2012) QuickStart Across Personal Edition v5.5 (Revision: November 8, 2012) Copyright 2004-2012 Across Systems GmbH The contents of this document may not be copied or made available to third parties in any other

More information

1 Introduction to MARS

1 Introduction to MARS 1 Introduction to MARS 1.1 Objectives After completing this lab, you will: Get familiar with the MARS simulator Learn how to assemble, run, and debug a MIPS program 1.2 The MARS Simulator MARS, the MIPS

More information

INFORMZ USER GUIDE: The Asset Manager

INFORMZ USER GUIDE: The Asset Manager INFORMZ USER GUIDE: The Asset Manager Version 1.0 January 29, 2014 ABOUT THIS GUIDE This guide provides an overview of the Asset Manager used by Informz. This guide covers the Asset Manager s basic functionality

More information

INVU SERVICES LTD GETTING STARTED GUIDE FOR SERIES 6

INVU SERVICES LTD GETTING STARTED GUIDE FOR SERIES 6 SERIES 6 TRAINING SERVICE PACK 6.2b INVU SERVICES LTD GETTING STARTED GUIDE FOR SERIES 6 Page 1 of 22 CONTENTS PAGE What is Series 6?... 3 Guide Introduction... 3 Switching Modes... 5 Getting Documents

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

Using Eclipse for Java. Using Eclipse for Java 1 / 1

Using Eclipse for Java. Using Eclipse for Java 1 / 1 Using Eclipse for Java Using Eclipse for Java 1 / 1 Using Eclipse IDE for Java Development Download the latest version of Eclipse (Eclipse for Java Developers or the Standard version) from the website:

More information