TD 6.2 GUI.NET and XAML

Size: px
Start display at page:

Download "TD 6.2 GUI.NET and XAML"

Transcription

1 DOCUMENT TYPE Title Here TD 6.2 GUI.NET and XAML OpenText Gupta Team Developer Progress Bar A new control called Progress Bar has been added to the control lists. Progress Bar will be the alternative to cmeter. There are 14 new SalMeterxxxx functions added to the Sal func-tion library to make the Progress Bar control useful. To use this control, it is required to set the start, end and step values. As the start value is incremented or decremented, the progress will be shown in the bar based on the step value. SalMeterSetRange() can be used to set the range and SalMeterSetStepSize() can be used to set the step size. As the value increments or decrements, the progression will be affected. Step size plays a role in how fast or slow the bar progresses. It is also possible to set start and end colours for the Progress Bar. The colour will gradually change as the progression happens. In the example below, pink is the start colour and green is the end colour. The functions SalMeterSetFromColor() and SalMeterSetToColor( ) are used to set the colours.

2 Another interesting functionality is that the Progress Bar allows the progress to be shown vertically or horizontally. The function SalMeterSetVertical(), when called with TRUE as the second parameter allows the progression to be shown vertically. The function SalMeterSetVertical(), when called with FALSE as the second parameter al-lows the progression to be shown horizontally. New Sal Functions The new sal functions and parameters are described below. SalMeterGetRange: Returns the current "range" of the progress bar, both the minimum and maximum values. Receive Number: The minimum of the range Receive Number: The maximum of the range SalMeterSetRange: Sets the current "range" of the progress bar, both the minimum and maximum values. Number: The minimum of the range Number: The maximum of the range SalMeterGetFromColor: Gets the color at the beginning of the gradient used to indicate progress. Return value: The current "From" color of the progress bar O P E N T E X T G U P T A T E A M D E V E L O P E R 2

3 SalMeterSetFromColor: Sets the color at the beginning of the gradient used to indicate progress. Number: The new "From" color of the progress bar SalMeterGetToColor: Gets the color at the end of the gradient used to indicate progress. Return value: The current "To" color of the progress bar SalMeterSetToColor: Sets the color at the end of the gradient used to indicate progress. Number: The new "To" color of the progress bar SalMeterGetStepSize: Gets the current amount the progress bar's value will be incremented or decremented when calling SalMeterStepUp/SalMeterStepDown. Return value: Returns the current step size SalMeterSetStepSize: Sets the current amount the progress bar's value will be incremented or decremented when calling SalMeterStepUp/SalMeterStepDown. Number: The new step size SalMeterGetSmooth: Gets the current "smooth" setting. See SalMeterSetSmooth for more details. Return value: Returns TRUE or FALSE for the current "Smooth" setting. O P E N T E X T G U P T A T E A M D E V E L O P E R 3

4 SalMeterSetSmooth: Sets the current "Smooth" setting. If smooth=true, the progress bar displays progress with a continuous gradient. If smooth=false, the progress bar displays progress with chunks of progress. Each chunk of progress con-tains the specified gradient. Boolean: The new "smooth" setting Return Value: Returns TRUE or FALSE indicating the success or failure of the operation SalMeterGetVertical: Gets whether the progress bar is displayed horizontally or vertically. Return value: Returns TRUE if the progress bar is currently displayed vertically, or FALSE otherwise SalMeterSetVertical: Gets whether the progress bar is displayed horizontally or vertically. Number: The new "vertical" value - TRUE will cause the progress bar to be displayed vertically. SalMeterStepDown: Causes the progress bar to decrease its value by the current "Step Size". Return value: Returns the new value of the progress bar SalMeterStepUp: Causes the progress bar to increase its value by the current "Step Size". Return value: Returns the new value of the progress bar Named Toolbar Extensions Team Developer 6.1 did introduce a new object of named toolbars. Named toolbars look and behave similar to the toolbars the TD IDE is using. With Team Developer 6.2 we are enhancing the capabilities of named toolbars by a new set of APIs that allow more control over the toolbar buttons behavior. O P E N T E X T G U P T A T E A M D E V E L O P E R 4

5 Named toolbars are defined in the Global Declarations section of the app outline. Individual application windows can load any number of defined named toolbars at application runtime. Named toolbars can be rearranged by the user to meet personal usability requirements. Named toolbars can be dragged around in the toolbar of a window allowing things like multi-row toolbars and such. The image shows a sample of re-arranged named toolbars using two rows of toolbars. Named Toolbars can include toolbar buttons and menu separators. Each toolbar button has an Actions section that allows coding the desired actions of the button. The outline structure of a named toolbar and its contents. Creating a toolbar at runtime is done via TD s SalCreateWindow() function. The first param-eter is the named toolbar name; the second parameter is the window handle of the parent window that should open the named toolbar in its toolbar area. The image shows how creating 3 toolbars for a TD form window is done. O P E N T E X T G U P T A T E A M D E V E L O P E R 5

6 With Team Developer 6.2 we are introducing a set of new APIs to enable and disable named toolbar items. Plus we are introducing a new method to change the text portion and the tooltip of a named toolbar button. Another new method allows you to set the background color of a named toolbar button. SalTBEnableItem This new function enables a specified named toolbar item in a specified named toolbar. usage: result = SalTBEnableItem( hwndtb, nindex ) Boolean result: success or failure of the operation Window Handle hwndtb: the window handle of the named toolbar Number nindex: The 0-based index of the toolbar item to enable SalTBDisableItem This new function disables a specified named toolbar item in a specified named toolbar. usage: result = SalTBDisableItem( hwndtb, nindex ) Boolean result: success or failure of the operation Window Handle hwndtb: the window handle of the named toolbar Number nindex: The 0-based index of the toolbar item to disable SalTBSetItemText This new function sets the button text of a specified named toolbar item in a specified named toolbar. usage: result = SalTBSetItemText( hwndtb, nindex ) Boolean result: success or failure of the operation Window Handle hwndtb: the window handle of the named toolbar Number nindex: The 0-based index of the toolbar item to whose text is being set SalTBSetItemTooltip This new function sets the button tooltip of a specified named toolbar item in a specified named toolbar. usage: result = SalTBSetItemTooltip( hwndtb, nindex ) Boolean result: success or failure of the operation Window Handle hwndtb: the window handle of the named toolbar Number nindex: The 0-based index of the toolbar item whose tooltip is being set O P E N T E X T G U P T A T E A M D E V E L O P E R 6

7 SalTBGetItemCount This new function retrieves the number of child objects of a specified named toolbar. usage: result = SalTBGetItemCount( hwndtb ) Number result: the number of items on the toolbar Window Handle: hwndtb: the window handle of the named toolbar SalTBSetItemColor Allows to set the background color of a specified named toolbar button residing in a speci-fied named toolbar. usage: result = SalTBSetItemColor( hwndtb, nindex, ncolor ) Boolean result: success or failure of the operation Window Handle hwndtb: the window handle of the named toolbar Number nindex: The 0-based index of the toolbar item whose color is being set Number ncolor: The color number of the color to set the toolbar item This is a sample app for the new named toolbar methods. Below is a URL that allows you to download and try the sample. O P E N T E X T G U P T A T E A M D E V E L O P E R 7

8 .NET 64 Bit Applications With the advent of 64 bit Operating Systems, it now becomes possible to run native 64 bit applications. However, until now TD has always compiled its.net applications as 32 bit, meaning they will always run as 32 bit even if running on a 64 bit OS. In the Project menu build settings dialog, there is now an Advanced button which will bring up a new Ad-vanced Settings dialog box. In this dialog, the user can choose one of three values for the Target CPU: 32 bit: the application will always run as 32 bit, no matter the OS. On a 64bit OS, it will run within the 32 bit subsystem 64 bit: the application will always run as 64 bit and can only run on a 64 bit machine Auto: the application will decide what bitness to use at launch time, depending on the OS or, for DLLs, depending on the process loading it. Note: due to limitations in our debugger, we can only attach to and debug 32 bit processes and so, regardless of the Target CPU setting for your application, when you run it from the IDE it is always built as 32 bit. There is also a new command-line argument to TD for specifying the target CPU when compiling from a DOS prompt. The syntax for the new flag is: "-cpu:32bit", "-cpu:64bit" or "-cpu:auto". O P E N T E X T G U P T A T E A M D E V E L O P E R 8

9 Load XAML Resource Dictionary Dynamically The existing function SalDictionaryPromote (introduced in Team Developer 6.1) allows the user to switch between resource dictionaries giving one higher precedence over the other. A new function called SalDictionaryLoad has been added to the Sal functions in Team De-veloper 6.2. This function will accept a *.XAML file containing a resource dictionary. It will load the dictionary into memory and merge it with the existing dictionaries. The new dictionary will be placed at the bottom of the merge order. This function will help users selectively switch between their resources at runtime. Example 1: The users do not have to have all their dictionaries loaded at the startup of the application. Every form or module could have a separate dictionary. The new function SalDictionaryLoad() can be called to load the specific dictionary just before the module or the form is loaded. Example 2: The users may want to display a form in one language e.g. English and another in a different language e.g. French. SalDictionaryLoad() can be called to load the English dictionary when the English form is loaded and French if and when the French form is load-ed. The new sal function is described below. SalDictionaryLoad String: a *.XAML file Number: for future use Return Value: Boolean indicating success or failure Users will be able to load various resources stored in different directories at run time on demand. O P E N T E X T G U P T A T E A M D E V E L O P E R 9

10 About OpenText OpenText provides Enterprise Information Management software that enables companies of all sizes and industries to manage, secure and leverage their unstructured business information, either in their data center or in the cloud. Over 50,000 companies already use OpenText solutions to unleash the power of their information. To learn more about OpenText (NASDAQ: OTEX; TSX: OTC), please visit NORTH AMERICA UNITED STATES GERMANY UNITED KINGDOM AUSTRALIA Copyright Open Text Corporation OpenText is a trademark or registered trademark of Open Text SA and/or Open Text ULC. The list of trademarks is not exhaustive of other trademarks, registered trademarks, product names, company names, brands and service names mentioned herein are property of Open Text SA or other respective owners. All rights reserved. For more information, visit: SKU#

Quick Start Guide. Introduction. OpenText Gupta TD Mobile. DOCUMENT TYPE Title Here

Quick Start Guide. Introduction. OpenText Gupta TD Mobile. DOCUMENT TYPE Title Here DOCUMENT TYPE Title Here Quick Start Guide OpenText Gupta TD Mobile Introduction This quick start guide is meant to help you become familiar with some concepts of TD Mobile to get you started quickly.

More information

Team Developer 6.2. There are two new check boxes provided in the Attribute Inspector which allows users to filter SAM message or Users messages.

Team Developer 6.2. There are two new check boxes provided in the Attribute Inspector which allows users to filter SAM message or Users messages. Team Developer New Features : Team Developer 6.2 IDE Features File open dialog Team Developer 6.2 SQLWindows developer opens a new file by choosing File Open from the menu, or by clicking on the open toolbar

More information

J U L Y Title of Document. Here is the subtitle of the document

J U L Y Title of Document. Here is the subtitle of the document J U L Y 2 0 1 2 Title of Document Here is the subtitle of the document Introduction to OpenText Protect Premier Anywhere Deploying and maintaining advanced Enterprise Information Management (EIM) solutions

More information

Quick Start Guide. OpenText Active Documents OpenText Active Documents Mobile

Quick Start Guide. OpenText Active Documents OpenText Active Documents Mobile Quick Start Guide OpenText Active Documents OpenText Active Documents Mobile MOBILE Table of Contents An Introduction to OpenText Active Documents...3 End-To-End Visibility and Analytics...4 Powerful Search

More information

OpenText StreamServe 5.6 Correspondence Reviewer. Accessibility and Compatibility Features

OpenText StreamServe 5.6 Correspondence Reviewer. Accessibility and Compatibility Features OpenText StreamServe 5.6 Correspondence Reviewer Accessibility and Compatibility Features OpenText StreamServe 5.6 Correspondence Reviewer Accessibility and Compatibility Features OPEN TEXT CORPORATION

More information

OpenText TM Gupta Team Developer Release Notes

OpenText TM Gupta Team Developer Release Notes OpenText TM Gupta Team Developer Release Notes 6.3 SP2 Product Released: 7/1/2016 Release Notes Revised: 2016-07-06 Contents 1.1 Release Notes revision history... 3 2.1 New features... 3 2.2 Discontinued

More information

Oracle Forms Modernization Through Automated Migration. A Technical Overview

Oracle Forms Modernization Through Automated Migration. A Technical Overview Oracle Forms Modernization Through Automated Migration A Technical Overview Table of Contents Document Overview... 3 Oracle Forms Modernization... 3 Benefits of Using an Automated Conversion Tool... 3

More information

OpenText Gupta Team Developer Release Notes

OpenText Gupta Team Developer Release Notes OpenText Gupta Team Developer Release Notes 7.1.1 Product Released: 2018-11-15 Release Notes Revised: 2018-11-14 Contents 1 Introduction... 3 1.1 Release Notes revision history... 3 2 About Team Developer...

More information

OpenText RightFax. FoIP Interoperability Guide

OpenText RightFax. FoIP Interoperability Guide OpenText RightFax FoIP Interoperability Guide Fax and Document Distribution Group August 2012 Abstract OpenText RightFax is the proven market leader in fax server, document delivery and fax software. It

More information

.NET Assemblies in Gupta TD 6

.NET Assemblies in Gupta TD 6 DOCUMENT TYPE Title Here.NET Assemblies in Gupta TD 6 OpenText Gupta Team Developer Abstract Microsoft.NET is a Framework supporting multiple language allowing those languages to exchange code and can

More information

Team Developer 6.1. Configure the color-coding in the Tools Preferences dialog under the Outline tab.

Team Developer 6.1. Configure the color-coding in the Tools Preferences dialog under the Outline tab. Team Developer New Features : Team Developer 6.1 IDE Features: Team Developer 6.1 Color-coded Source Code The source code in the IDE is now color-coded. You can customize the colors of each of the following

More information

Kendo UI. Builder by Progress : What's New

Kendo UI. Builder by Progress : What's New Kendo UI Builder by Progress : What's New Copyright 2017 Telerik AD. All rights reserved. July 2017 Last updated with new content: Version 2.0 Updated: 2017/07/13 3 Copyright 4 Contents Table of Contents

More information

OpenText Fax Servers and Microsoft Office 365

OpenText Fax Servers and Microsoft Office 365 OpenText Fax Servers and Microsoft Office 365 Integrating Fax with Office 365 E N T E R P R I S E I N F O R M A T I O N M A N A G E M E N T 1 Abstract Cloud-based information technologies promise a number

More information

FirstClass Client Release Notes

FirstClass Client Release Notes FirstClass Client Release Notes 12.122 Product Released: 2015-10-30 Release Notes Revised: 2015-10-07 Contents 1 Introduction... 3 1.1 Release Notes Revision History... 3 2 About FirstClass Client... 3

More information

OpenText Gupta TD Mobile Release Notes

OpenText Gupta TD Mobile Release Notes OpenText Gupta TD Mobile Release Notes 2.2 Product Released: 2018-10-04 Release Notes Revised: 2018-09-13 Contents 1 Introduction... 3 1.1 Release Notes revision history... 3 2 About TD Mobile... 3 2.1

More information

Military Icons User Guide Version 1.0

Military Icons User Guide Version 1.0 Military Icons User Guide Version 1.0 Copyright 2008 Mobiform Software, Inc. 1 Table of Contents Introduction... 3 Dependency Properties... 4 Enumerable Values... 5 Usage... 7 Using Military Icon with

More information

Lesson Planning and Delivery with Notebook Software

Lesson Planning and Delivery with Notebook Software Lesson Planning and Delivery with Notebook Software Before you start Before you begin your lesson, ensure that your computer is turned on and the SMART Board interactive whiteboard is connected and oriented.

More information

Quark XML Author October 2017 Update

Quark XML Author October 2017 Update Quark XML Author 2015 - October 2017 Update Contents Quark XML Author 2015 ReadMe...1 System requirements...2 Quark XML Author installation procedure...4 Enabling.NET programmability...5 Changes in this

More information

OpenText TeleForm Release Notes

OpenText TeleForm Release Notes OpenText TeleForm Release Notes 11.2 Product Released: 2016-12-01 Release Notes Revised: 2016-11-17 Caution Cautions help you avoid irreversible problems. Read this information carefully and follow all

More information

OpenText Gupta Team Developer Release Notes

OpenText Gupta Team Developer Release Notes OpenText Gupta Team Developer Release Notes 6.3.9 Product Released: 2017-07-11 Release Notes Revised: 2017-07-12 Contents OpenText Gupta Team Developer... 2 Release Notes... 2 Contents... 2 1 Introduction...

More information

OpenText StreamServe 5.6 Upgrading instructions

OpenText StreamServe 5.6 Upgrading instructions OpenText StreamServe 5.6 Upgrading instructions Reference Guide Rev A OpenText StreamServe 5.6 Upgrading instructions Reference Guide Rev A Open Text SA 40 Avenue Monterey, Luxembourg, Luxembourg L-2163

More information

OpenText TeleForm Release Notes

OpenText TeleForm Release Notes OpenText TeleForm Release Notes 16.2 Product Released: 2017-04-28 Release Notes Revised: 2017-04-17 Caution Cautions help you avoid irreversible problems. Read this information carefully and follow all

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

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions E-mail Converter for Outlook and SharePoint User Manual Contents 1 INTRODUCTION... 2 1.1 LANGUAGES... 2 1.2 REQUIREMENTS... 3 2 THE SHAREPOINT SITE... 4 2.1 PERMISSIONS... 4 3 INSTALLATION OF E-MAIL CONVERTER...

More information

TDMobile Architecture & Overview of the TD Mobile IDE. Horst de Lorenzi

TDMobile Architecture & Overview of the TD Mobile IDE. Horst de Lorenzi TDMobile Architecture & Overview of the TD Mobile IDE Horst de Lorenzi TD Mobile Devices Agenda Application Architecture TDMobile IDE TD Mobile Devices Application Architecture Client Side - overview Page

More information

Integrating CaliberRM with Mercury TestDirector

Integrating CaliberRM with Mercury TestDirector Integrating CaliberRM with Mercury TestDirector A Borland White Paper By Jenny Rogers, CaliberRM Technical Writer January 2002 Contents Introduction... 3 Setting Up the Integration... 3 Enabling the Integration

More information

Voluntary Product Accessibility Report

Voluntary Product Accessibility Report Voluntary Product Accessibility Report Compliance and Remediation Statement for Section 508 of the US Rehabilitation Act for OpenText Application Governance & Archiving for Microsoft SharePoint December

More information

OneBridge Mobile Groupware 5.0

OneBridge Mobile Groupware 5.0 OneBridge Mobile Groupware 5.0 release overview Extended Systems 5777 North Meeker Avenue Boise, ID 83713 Tel: (800) 235-7576 (208) 322-7800 Fax: (208) 327-5004 Web: www.extendedsystems.com Rev. 1005 Legal

More information

TREX Set-Up Guide: Creating a TREX Executable File for Windows

TREX Set-Up Guide: Creating a TREX Executable File for Windows TREX Set-Up Guide: Creating a TREX Executable File for Windows Prepared By: HDR 1 International Boulevard, 10 th Floor, Suite 1000 Mahwah, NJ 07495 May 13, 2013 Creating a TREX Executable File for Windows

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

Avigilon Control Center Virtual Matrix User Guide. Version 5.4.2

Avigilon Control Center Virtual Matrix User Guide. Version 5.4.2 Avigilon Control Center Virtual Matrix User Guide Version 5.4.2 2006-2014 Avigilon Corporation. All rights reserved. Unless expressly granted in writing, no license is granted with respect to any copyright,

More information

Rapise Quick Start Guide Testing Java Applications with Rapise

Rapise Quick Start Guide Testing Java Applications with Rapise Rapise Quick Start Guide Testing Java Applications with Rapise Date: May 9th, 2017 Contents Introduction... 1 1. Testing the Sample AWT/Swing Application... 2 2. Testing the Sample SWT Application... 7

More information

G. Tardiani RoboCup Rescue. EV3 Workshop Part 1 Introduction to RobotC

G. Tardiani RoboCup Rescue. EV3 Workshop Part 1 Introduction to RobotC RoboCup Rescue EV3 Workshop Part 1 Introduction to RobotC Why use RobotC? RobotC is a more traditional text based programming language The more compact coding editor allows for large programs to be easily

More information

Just Enough Eclipse What is Eclipse(TM)? Why is it important? What is this tutorial about?

Just Enough Eclipse What is Eclipse(TM)? Why is it important? What is this tutorial about? Just Enough Eclipse What is Eclipse(TM)? Eclipse is a kind of universal tool platform that provides a feature-rich development environment. It is particularly useful for providing the developer with an

More information

Delivers cost savings, high definition display, and supercharged sharing

Delivers cost savings, high definition display, and supercharged sharing TM OpenText TM Exceed TurboX Delivers cost savings, high definition display, and supercharged sharing OpenText Exceed TurboX is an advanced solution for desktop virtualization and remote access to enterprise

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

Fax and Document Distribution Group. Branding and Product Names

Fax and Document Distribution Group. Branding and Product Names OpenText Fax and Document Distribution Group Branding and Product Names December 2010 Purpose Content and messaging within this brief will help you leverage and build upon the strength of Open Text and

More information

appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions

appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions Version 5.1 July, 2013 Copyright appstrategy Inc. 2013 appcompass

More information

Red Hat JBoss Fuse 6.1

Red Hat JBoss Fuse 6.1 Red Hat JBoss Fuse 6.1 Management Console User Guide Managing your environment from the Web Last Updated: 2017-10-12 Red Hat JBoss Fuse 6.1 Management Console User Guide Managing your environment from

More information

Genio Product Lifecycle Support Policy. January 2009

Genio Product Lifecycle Support Policy. January 2009 Genio Product Lifecycle Support Policy January 2009 While every attempt has been made to ensure the accuracy and completeness of the information in this document, some typographical or technical errors

More information

Virtualizing Open Text Fax Server with Realtime Fax over IP and Open Text Fax Gateway

Virtualizing Open Text Fax Server with Realtime Fax over IP and Open Text Fax Gateway Virtualizing Open Text Fax Server with Realtime Fax over IP and Open Text Fax Gateway Abstract Computer virtualization is a revolutionary concept that provides organizations with a powerful, simple, and

More information

Benefits of Building HTML5 Mobile Enterprise Applications

Benefits of Building HTML5 Mobile Enterprise Applications Benefits of Building HTML5 Mobile Enterprise Applications Product Version 2.0 Table of Contents Introducing OpenText Gupta TD Mobile and HTML5... 3 Challenges of Mobile Enterprise Application Development...

More information

A Guide to Apple Events Scripting

A Guide to Apple Events Scripting A Guide to Apple Events Scripting A Guide to Apple Events Scripting Introduction 1 About this Guide 1 What You Need 1 Scripting Overview 2 Introduction to Apple Events 2 The Object Model 3 Script Writing

More information

Continuous Function Chart Getting. Started SIMATIC. Process Control System PCS 7 Continuous Function Chart Getting Started.

Continuous Function Chart Getting. Started SIMATIC. Process Control System PCS 7 Continuous Function Chart Getting Started. Continuous Function Chart Getting Started SIMATIC Process Control System PCS 7 Continuous Function Chart Getting Started Getting Started Preface 1 Creating a closed loop with a simulated process 2 Testing

More information

PEERNET PDF Creator Plus 6.0 Thank you for choosing PDF Creator Plus! Getting Started QUICK START GUIDE

PEERNET PDF Creator Plus 6.0 Thank you for choosing PDF Creator Plus! Getting Started QUICK START GUIDE Thank you for choosing PDF Creator Plus! PDF Creator Plus 6.0 has been successfully installed on your computer: the PDF Creator Plus preview application is now available from the shortcut placed on your

More information

Coveo Platform 7.0. EMC Documentum Connector Guide

Coveo Platform 7.0. EMC Documentum Connector Guide Coveo Platform 7.0 EMC Documentum Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Spring 6 @salesforcedocs Last updated: April 7, 06 Copyright 000 06 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Avigilon Control Center Virtual Matrix User Guide

Avigilon Control Center Virtual Matrix User Guide Avigilon Control Center Virtual Matrix User Guide Version 5.2 PDF-ACCVM-B-Rev1 2013-2014 Avigilon Corporation. All rights reserved. Unless expressly granted in writing, no license is granted with respect

More information

A Bus is a polyline object that is used, in conjunction with other objects, to define the connection of multiple nets.

A Bus is a polyline object that is used, in conjunction with other objects, to define the connection of multiple nets. Bus Old Content - visit altium.com/documentation Modified by Admin on Sep 13, 2017 Parent page: Objects A Bus is a polyline object that is used, in conjunction with other objects, to define the connection

More information

BPMone 2.8 Release Notes

BPMone 2.8 Release Notes BPMone 2.8 Release Notes 2012 Perceptive Software Date: 11/7/2012 Version: 2.8 BPMone is a trademark of Lexmark International Technology SA, registered in the U.S. and other countries. Perceptive Software

More information

Quark XML Author 2015 April 2016 Update ReadMe

Quark XML Author 2015 April 2016 Update ReadMe Quark XML Author 2015 April 2016 Update ReadMe Contents Quark XML Author 2015 ReadMe...1 System requirements...2 Quark XML Author installation procedure...4 Enabling.NET programmability...5 Changes in

More information

Intel Threading Tools

Intel Threading Tools Intel Threading Tools Paul Petersen, Intel -1- INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. EXCEPT AS PROVIDED IN INTEL'S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS,

More information

Qualcomm Snapdragon Profiler

Qualcomm Snapdragon Profiler Qualcomm Technologies, Inc. Qualcomm Snapdragon Profiler User Guide September 21, 2018 Qualcomm Snapdragon is a product of Qualcomm Technologies, Inc. Other Qualcomm products referenced herein are products

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

OpenText Gupta Team Developer Release Notes

OpenText Gupta Team Developer Release Notes OpenText Gupta Team Developer Release Notes 7.0.2 Product Released: 2017-06-06 Release Notes Revised: 2017-06-06 Contents OpenText Gupta Team Developer... 2 Release Notes... 2 Contents... 2 1 Introduction...

More information

Quark XML Author 2015 September 2016 Update

Quark XML Author 2015 September 2016 Update Quark XML Author 2015 September 2016 Update Contents Quark XML Author 2015 ReadMe...1 System requirements...2 Quark XML Author installation procedure...4 Enabling.NET programmability...5 Changes in this

More information

Sauer-Danfoss PLUS+1 GUIDE Software Version Release Notes

Sauer-Danfoss PLUS+1 GUIDE Software Version Release Notes Sauer-Danfoss PLUS+1 GUIDE Software Version 6.0.8 Release Notes This file contains important supplementary and late-breaking information that may not appear in the main product documentation. We recommend

More information

Copyright Notice. 2 Copyright Notice

Copyright Notice. 2 Copyright Notice 2 Copyright Notice Copyright Notice AQtrace, as described in this online help system, is licensed under the software license agreement distributed with the product. The software may be used or copied only

More information

Using SAS Enterprise Guide with the WIK

Using SAS Enterprise Guide with the WIK Using SAS Enterprise Guide with the WIK Philip Mason, Wood Street Consultants Ltd, United Kingdom ABSTRACT Enterprise Guide provides an easy to use interface to SAS software for users to create reports

More information

Perceptive Experience Content Apps

Perceptive Experience Content Apps Perceptive Experience Content Apps Technical Specifications Version: 1.4.0 Written by: Product Knowledge, R&D Date: Monday, July 18, 2016 2014-2016 Lexmark International Technology, S.A. All rights reserved.

More information

JavaFX. JavaFX Scene Builder Release Notes Release 2.0 Early Access E

JavaFX. JavaFX Scene Builder Release Notes Release 2.0 Early Access E JavaFX JavaFX Scene Builder Release Notes Release 2.0 Early Access E27533-04 December 2013 JavaFX/JavaFX Scene Builder Release Notes, Release 2.0 Early Access E27533-04 Copyright 2012, 2013 Oracle and/or

More information

USER GUIDE. GO-Global Android Client. Using GO-Global Android Client

USER GUIDE. GO-Global Android Client. Using GO-Global Android Client GO-Global Android Client USER GUIDE GO-Global Android Client allows GO-Global customers to connect to their GO-Global hosts from Android devices, with an emphasis on maintaining a high degree of usability

More information

SAS Job Monitor 2.2. About SAS Job Monitor. Overview. SAS Job Monitor for SAS Data Integration Studio

SAS Job Monitor 2.2. About SAS Job Monitor. Overview. SAS Job Monitor for SAS Data Integration Studio SAS Job Monitor 2.2 About SAS Job Monitor Overview SAS Job Monitor is a component of SAS Environment Manager that integrates information from SAS Data Integration Studio, DataFlux Data Management Server,

More information

Perceptive Process Mining

Perceptive Process Mining Perceptive Process Mining What s New Version: 2.4.x Written by: Product Documentation, R&D Date: May 2013 2013 Lexmark International Technology SA. All rights reserved Perceptive Software is a trademark

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

List of Defects Fixed

List of Defects Fixed List of Defects Fixed - PTF4 List of Defects Fixed GUPTA Team Developer 3.1 Program Temporary Fixes (PTFs) offer quick resolution to specific known problems in a given release. Therefore, PTFs do not go

More information

OpenText RightFax 10.5 Connector for Microsoft SharePoint 2010 Administrator Guide

OpenText RightFax 10.5 Connector for Microsoft SharePoint 2010 Administrator Guide OpenText RightFax 10.5 Connector for Microsoft SharePoint 2010 Administrator Guide OpenText RightFax 10.5 Connector for Microsoft SharePoint 2010 Administrator Guide ii Edition OpenText RightFax 10.5 Connector

More information

OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide

OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide ii Edition OpenText RightFax 10.0 Connector

More information

OpenText TM Gupta Team Developer Release Notes

OpenText TM Gupta Team Developer Release Notes OpenText TM Gupta Team Developer Release Notes 6.3 SP2 Update 1 Product Released: 7/1/2016 Release Notes Revised: 2016-10-31 Contents 1.1 Release Notes revision history... 3 2.1 New features... 3 2.2 Discontinued

More information

VMware Workstation 5 Lab. New Features and Capabilities: Multiple Snapshots, Teams, Clones, Video Capture and More

VMware Workstation 5 Lab. New Features and Capabilities: Multiple Snapshots, Teams, Clones, Video Capture and More VMware Workstation 5 Lab New Features and Capabilities: Multiple Snapshots, Teams, Clones, Video Capture and More Presentation Summary VMware Workstation overview VMware Workstation usage scenarios Features

More information

Module 4: Working with MPI

Module 4: Working with MPI Module 4: Working with MPI Objective Learn how to develop, build and launch a parallel (MPI) program on a remote parallel machine Contents Remote project setup Building with Makefiles MPI assistance features

More information

SilkTest Workbench Getting Started with Visual Tests

SilkTest Workbench Getting Started with Visual Tests SilkTest Workbench 13.0 Getting Started with Visual Tests Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 2010-2011 Borland

More information

CGI Subroutines User's Guide

CGI Subroutines User's Guide FUJITSU Software NetCOBOL V11.0 CGI Subroutines User's Guide Windows B1WD-3361-01ENZ0(00) August 2015 Preface Purpose of this manual This manual describes how to create, execute, and debug COBOL programs

More information

The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy.

The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy. Processor Debug Old Content - visit altium.com/documentation Modified by Admin on Nov 6, 2013 The following content has been imported from Legacy Help systems and is in the process of being checked for

More information

FCWnx 7.6 National Language Support Release Notes

FCWnx 7.6 National Language Support Release Notes FCWnx 7.6 National Language Support Release Notes P/N 460704001A ISS 31AUG11 2011 UTC Fire & Security. All rights reserved. This document may not be copied in whole or in part or otherwise reproduced without

More information

Crystal Enterprise. Overview. Contents. Upgrading CE8.5 to CE10 Microsoft Windows

Crystal Enterprise. Overview. Contents. Upgrading CE8.5 to CE10 Microsoft Windows Crystal Enterprise Upgrading CE8.5 to CE10 Microsoft Windows Overview This document is intended to assist you upgrade from a Crystal Enterprise (CE) 8.5 system to a CE 10 system. NOTE: The scenario outlined

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions Contents 1 INTRODUCTION... 2 1.1 LANGUAGES... 2 1.2 REQUIREMENTS... 2 2 THE SHAREPOINT SITE... 3 2.1 PERMISSIONS... 3 3 CONVERTED E-MAILS AND SHAREPOINT TICKETS... 4 3.1 THE CONVERTED E-MAIL... 4 3.2 THE

More information

Oracle Policy Automation The modern enterprise advice platform

Oracle Policy Automation The modern enterprise advice platform Oracle Policy Automation The modern enterprise advice platform Release features and benefits (November 2017) v1.01 Program agenda 1 2 3 Overview of Oracle Policy Automation New features in release For

More information

Desktop App Release Notes

Desktop App Release Notes BlackBerry AtHoc Networked Crisis Communication Desktop App Release Notes Release 6.2.x.277, May 2018 (Windows) Release 1.7, May 2018 (Mac) Copyright 2014 2018 BlackBerry Limited. All Rights Reserved.

More information

CTCopc CONTROL TECHNOLOGY CORPORATION. CTCopc Reference. CTCopc. Reference

CTCopc CONTROL TECHNOLOGY CORPORATION. CTCopc Reference. CTCopc. Reference CTCopc CONTROL TECHNOLOGY CORPORATION CTCopc Reference CTCopc Reference CONTROL TECHNOLOGY CORPORATION CTCopc Reference 2004 Control Technology Corporation All Rights Reserved 25 South Street Hopkinton,

More information

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC ABSTRACT JDMS harnesses the power of a SAS using Java technologies. JDMS is a Java

More information

Oracle Policy Automation Release Notes

Oracle Policy Automation Release Notes Oracle Policy Automation 10.1.0 Release Notes Contents Release Overview 2 Oracle Policy Modeling 4 Singleton entities should not be used... 4 InstanceValueIf function... 4 Automatic entity containment...

More information

Getting Started Guide

Getting Started Guide Maximizer Connect for Excel Quotes Getting Started Guide for Maximizer CRM Live Published By Prerequisites Microsoft Excel Maximizer Connect for Excel Quotes works with Excel 2013 or 2016 desktop versions

More information

Multi-Machine Guide vcloud Automation Center 5.2

Multi-Machine Guide vcloud Automation Center 5.2 Multi-Machine Guide vcloud Automation Center 5.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check

More information

Adding Dynamics. Introduction

Adding Dynamics. Introduction M-Graphic s User s Manual 11-1 Chapter 11 Adding Dynamics Introduction This chapter explains how to make single or multiple dynamic connections from display objects to points from OPC data servers. This

More information

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE SureView Analytics 6.1.1 Release Notes ================================= --------- IMPORTANT NOTE REGARDING DOCUMENTATION --------- The Installation guides, Quick Start Guide, and Help for this release

More information

COLLEGE OF ENGINEERING, NASHIK-4

COLLEGE OF ENGINEERING, NASHIK-4 Pune Vidyarthi Griha s COLLEGE OF ENGINEERING, NASHIK-4 DEPARTMENT OF COMPUTER ENGINEERING 1) What is Android? Important Android Questions It is an open-sourced operating system that is used primarily

More information

Developing Mobile Apps (357)

Developing Mobile Apps (357) Developing Mobile Apps (357) Develop a XAML page layout for an adaptive UI Construct a page layout Configure a RelativePanel layout; select the appropriate XAML layout panel based on the UI requirement;

More information

Engineering Tool for PC SDWP001 Operating Manual

Engineering Tool for PC SDWP001 Operating Manual Inverter HF-520/HF-X20 Series SF-520 Series Engineering Tool for PC SDWP001 Operating Manual 1 Manual No. DM2308E-1 Table of Contents Safety Symbols and Markings...4 Safety Notes and Instructions...4 Manual

More information

IMSL C Numerical Library

IMSL C Numerical Library IMSL C Numerical Library Getting Started Guide for Windows A Technical Guide by Rogue Wave Software. Rogue Wave Software 5500 Flatiron Parkway, Suite 200 Boulder, CO 80301, USA www.roguewave.com IMSL C

More information

End-to-End Agile Testing using Incremental Approach for a Leading EIM Solution Provider ATTENTION. ALWAYS.

End-to-End Agile Testing using Incremental Approach for a Leading EIM Solution Provider ATTENTION. ALWAYS. End-to-End Agile Testing using Incremental Approach for a Leading EIM Solution Provider ATTENTION. ALWAYS. ABOUT THE CUSTOMER Our Customer is one of the global leaders in Enterprise Information Management

More information

InSync Service User Guide

InSync Service User Guide InSync Service User Guide Matrix Logic Corporation 1 Published by Matrix Logic Corporation Copyright 2011 by Matrix Logic Corporation All rights reserved. No part of the content of this manual may be reproduced

More information

EMC SourceOne Management Pack for Microsoft System Center Operations Manager

EMC SourceOne Management Pack for Microsoft System Center Operations Manager EMC SourceOne Management Pack for Microsoft System Center Operations Manager Version 7.2 Installation and User Guide 302-000-955 REV 01 Copyright 2005-2015. All rights reserved. Published in USA. Published

More information

SFC Visualization (V8.0 SP1) SIMATIC. Process Control System PCS 7 SFC Visualization (V8.0 SP1) What's new in SFV? 1. SFC Visualization (SFV)

SFC Visualization (V8.0 SP1) SIMATIC. Process Control System PCS 7 SFC Visualization (V8.0 SP1) What's new in SFV? 1. SFC Visualization (SFV) What's new in SFV? 1 SFC Visualization (SFV) 2 SIMATIC Process Control System PCS 7 Programming and Operating Manual Basic SFC settings 3 Configuration 4 Operating and monitoring SFCs 5 Appendix 6 12/2012

More information

Forecasting for Desktop 14.1

Forecasting for Desktop 14.1 SAS Forecasting for Desktop 14.1 Administrator's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Forecasting for Desktop 14.1: Administrator's

More information

Upgrading to Advantage Database Server 9.1 Get the Advantage

Upgrading to Advantage Database Server 9.1 Get the Advantage Upgrading to Advantage Database Server 9.1 Get the Advantage Product Datasheet Advantage Database Server 9.1 offers many benefits over 8.1 including performance enhancements and functionality that can

More information

SEGGER J-Scope. User Guide. Document: UM08028 Software Version: 5.10 Revision: 0 Date: November 26, 2015

SEGGER J-Scope. User Guide. Document: UM08028 Software Version: 5.10 Revision: 0 Date: November 26, 2015 SEGGER J-Scope User Guide Document: UM08028 Software Version: 5.10 Revision: 0 Date: November 26, 2015 A product of SEGGER Microcontroller GmbH & Co. KG www.segger.com 2 Disclaimer Specifications written

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

Styles and Conditional Features

Styles and Conditional Features Styles and Conditional Features Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document and its

More information

Oracle Eloqua Sales Tools for Microsoft Outlook. User Guide

Oracle Eloqua Sales Tools for Microsoft Outlook. User Guide Oracle Eloqua Sales Tools for Microsoft Outlook User Guide 2018 Oracle Corporation. All rights reserved 21-Sep-2018 Contents 1 Oracle Eloqua Sales Tools for Microsoft Outlook 3 2 Frequently asked questions

More information