Getting Started with ImageMan.Net Twain

Size: px
Start display at page:

Download "Getting Started with ImageMan.Net Twain"

Transcription

1 ImageMan.Net Twain Developer Guide 1 Getting Started with ImageMan.Net Twain Version 1.0

2 ImageMan.Net Twain Developer Guide 2 Table Of Contents 1. Welcome 3 2. Using the Trial Edition 4 3. Ordering Information 5 4. Getting Started 6 5. Sample Applications 7 6. Using the Twain control Using the TwainGUI Control Using the controls in Internet Explorer Uploading Images from Client Side Applications Handling Uploaded Images on the Server Side Obtaining Support Contacting Data Techniques License Agreement 22

3 ImageMan.Net Twain Developer Guide 3 1 Welcome The ImageMan.Net Twain toolkit includes 3 fully managed.net components which provide a rich interface to TWAIN compatible devices such as scanners, digital cameras and frame grabbers. 100% Managed Controls support x-copy deployment Object oriented controls simplify development of scanner enabled applications Supports Version 1.9 of the Twain specification TwainGui control provides a Device independent customizable scanner interface Support for client-side use in Internet Explorer HTTPUpload class supports uploading images from client side applications Support for querying supported scanner capabilities Automatic Document Feeder (ADF) and Duplex scanner support Context Sensitive Online Help and Documentation Support for setting scanner capabilities Returns scanned image data as.net Image objects for compatibility with other classes Backed up by Data Techniques professional support staff

4 ImageMan.Net Twain Developer Guide 4 2 Using the Trial Edition The trial edition of the ImageMan.Net Twain toolkit is fully functional and includes controls with a 30 day trial limit and a watermark added to scanned images. After the 30 day trial period the controls will no longer instantiate and will display a trial expired dialog. At that time you may register the controls by entering your license key from our online ordering system. Upon registration, the time limit and watermark will be removed.

5 ImageMan.Net Twain Developer Guide 5 3 Ordering Information You may purchase the ImageMan.Net Twain toolkit directly from Data Techniques or from one of our many US or International resellers. Online ordering is available on the Data Techniques website and allows you to order and download the product in minutes using your Visa, MasterCard or American Express credit card. Products purchased directly from Data Techniques are covered by our 60 day money back guarantee*. The ImageMan.Net Twain toolkit is royalty free and licensed per developer. You must have a license for each developer using the toolkit. Our Team License pack includes licenses for up to 5 developers at a cost only twice that of our single user license. Each license includes royalty-free runtime distribution of the controls with Winforms applications and includes 1 server distribution license. To run your application(s) on more than 1 web server you'll need additional licenses which can be obtained from our website. *Excludes any shipping cost, applies only to product purchased directly from Data Techniques.

6 ImageMan.Net Twain Developer Guide 6 4 Getting Started 4.1 Adding the ImageMan.Net Twain controls to the Visual Studio Toolbar 1. Display the Toolbox window 2. Right click and select Add/Remove Items 3. Click the check boxes next to the TwainControl and TwainGui entries in the.net Framework Components tab. 4. Click OK. 4.2 Adding the controls to your form With the form open, you can double click on the control in the toolbar or drag the control onto your form. 4.3 Deciding which control use The ImageMan.Net Twain toolkit includes 3 components, the TwainControl encapsulates the TWAIN interface in a non visual control, the TwainGui control provides a device independent visual interface for controlling the scanner capabilities and the HttpUpload class to support uploading images from a client side application. The TwainGui control provides a visual wrapper on top of the TwainControl and exposes all its functionality as well as providing a Tree based view of the configured device settings. 4.4 Basic Scanning Sequence 1. Setup the scan parameters by setting properties such as Resolution, Duplex, etc or by calling the NegotiateCapability, GetCapability or SetCapability methods. 2. Call the ScanPage method once for each page you wish to acquire or create event handlers for the PageScanned, ScanComplete and ScanCancelled events and then use the ScanAll method to initiate scanning. 3. Call the CloseSource method to indicate you are done with the scanner.

7 ImageMan.Net Twain Developer Guide 7 5 Sample Applications Several sample applications are included in the ImageMan.Net Twain installation to help illustrate using various controls in C#, VB.Net and Internet Explorer applications. Shortcuts to the solution files are added to the Program's menu and solutions are included for Visual Studio 2002 and Visual Studio Sample csdemo csguidemo Description Illustrates using the TwainControl in a C# application as well as saving scanned images as TIFF files. Illustrates using the TwainGUI control in a C# application as well as saving scanned images as TIFF files. cscustdemo Illustrates using and customizing the TwainGUI control in a C# application. vbdemo vbguidemo Illustrates using the TwainControl in a VB.Net application as well as saving scanned images as TIFF files. Illustrates using the TwainGUI control in a VB.Net application as well as saving scanned images as TIFF files. vbcustdemo Illustrates using and customizing the TwainGUI control in a VB.Net application. ASP.Net The ImgManNet sample application is installed on systems with IIS installed and includes a sample application which illustrates using the TwainControl and HTTPUpload class in a client side Internet Explorer application along with an ASP.NET backend application which saves the uploaded images, creates thumbnails and returns them in a page after scanning. Prior to running the sample application from the provided link you must grant the local ASP_NET account WRITE access to the <installdir>\imgmannet\imgs directory so the sample can write the uploaded image files.

8 ImageMan.Net Twain Developer Guide 8 6 Using the Twain control 6.1 Specifying the Scan parameters The TwainControl includes properties that can be used to set common attributes such as the PixelType, Resolution, Duplex, and more. In addition to this high level support, the control also provides access to the complete set of Twain capabilties which a device can implement using the NegotiateCapability, GetCapability and SetCapability methods. Setting of Properties or capability negotiation should be done prior to calling the ScanPage or ScanAll methods. When using the ScanPage method properties and capabilties can also be set and/or queried between calls to ScanPage. 6.2 If you set properties but do not call ScanPage or ScanAll then you still must call CloseSource afterward to indicate your application is finished with the Twain device. Failure to do so will cause the device to be unavailable to other applications. Scanning without Events To scan a page use the ScanPage method which will initiate a scan and return an Image object. After calling ScanPage you should call the CloseSource method to tell the control you are done with the current device. Not calling this method will mean other applications will not be able to use the scanner until the control is destroyed. [C#] System.Drawing.Image img = twaincontrol1.scanpage(); twaincontrol1.closesource(); [Visual Basic] Dim img As Image = twaincontrol1.scanpage() twaincontrol1.closesource() The ScanPage method can be called multiple times to get all the documents in an ADF for instance. When no pages remain to be scanned the method will return null. [C#] System.Drawing.Image img; img = twaincontrol1.scanpage(); while( img!= null ) { // Save the img img = twaincontrol1.scanpage(); twaincontrol1.closesource(); [Visual Basic] Dim img As Image img = twaincontrol1.scanpage() While Not (img is Nothing) ' Save the image img = twaincontrol1.scanpage() End While twaincontrol1.closesource() 6.3 Scanning with Events

9 ImageMan.Net Twain Developer Guide 9 The ScanAll method scans up to the number of pages specified by the MaxPages property and fires the PageScanned event for each page obtained. When no pages remain to be scanned the control will fire the ScanComplete event. In the event the user clicks the scanner's Cancel button the control will fire the ScanCanceled event. [C#] // Scan up to 999 pages twain.maxpages = 999; twain.scanall(); // Our event handlers private void twain_scancomplete(object sender, EventArgs e) { Console.WriteLine( "ScanComplete Fired"); private void twain_scancanceled(object sender, EventArgs e) { Console.WriteLine( "ScanCanceled Fired"); private void twain_pagescanned(object sender, PageScannedEventArgs e) { Console.WriteLine( "PageScanned Fired"); [Visual Basic] Friend WithEvents twain As DTI.ImageMan.Twain.TwainControl twain.maxpages = 999 twain.scanall() Private Sub twain_pagescanned(byval sender As Object, ByVal e As DTI.ImageMan.Twain.PageScannedEventArgs) Handles twain.pagescanned ' e.scanimage contains the scanned image End Sub Private Sub twain_scancanceled(byval sender As Object, ByVal e As System.EventArgs) Handles twain.scancanceled End Sub Private Sub twain_scancomplete(byval sender As Object, ByVal e As System.EventArgs) Handles twain.scancomplete End Sub 6.4 Displaying the Select Scanner Dialog Calling the SelectScanner method will display the Twain Select scanner dialog to allow the user to specify the default scanner. The CurrentSource property will contain an Identity object which describes the default scanner selected by the user. [C#] twaincontrol1.selectscanner();

10 ImageMan.Net Twain Developer Guide 10 [Visual Basic] twaincontrol1.selectscanner() 6.5 Programmatically selecting a Scanner In addition to displaying the Select Scanner dialog, a scanner can be selected programmatically using the CurrentSource property. Setting this property to one of the Identity objects returned from the Sources property will set the default scanner to that device. The Sources property returns a collection of Identity objects which describe each Twain device found on the system. [C#] foreach( Identity id in twaincontrol1.sources ) { // Add the name of the scanner to our listbox lstbox.add( id.productname ); [Visual Basic] Dim id As Identity For Each id In TwainControl1.Sources Console.WriteLine(id.ProductName) Next

11 ImageMan.Net Twain Developer Guide 11 7 Using the TwainGUI Control The TwainGui control provides a customizable tree view based control that supports displaying and changing the configured Twain capabilities. The control is built upon the base Twain control and exposes an instance as a property which can be used to further customize applications. 7.1 Configuring the control's Appearance By default, no options are displayed in the TwainGui control, you can add specific options using the Add method of the Options collection or using the LoadOptions method to load a default set or to load options from a previously saved options file. When adding options to the tree view you can specify the Capability to be added, which category it will appear under, how the capability should be handled and also an initial value. The text which appears at the root of the tree can be configured using the control's Text property. Adding items using the Options collection The desired capabilities can be added to the tree view by creating an Option object and then adding it to the Options collection. There are several constructors for the Option object which simplify creating options. The simplest constructor requires only the Capability to be added and will add it to a default category. There is also a constructor which allows you to specify the capability and the category into which the capability should be added. Additional constructors allow you to specify the default value for the capability and also how the capability should be handled. [C#]

12 ImageMan.Net Twain Developer Guide 12 TwainGui1.Options.Add(new Option(Capabilities.Orientation, Option.Categories.Paper)); [Visual Basic] TwainGui1.Options.Add(new Option(Capabilities.Orientation, Option.Categories.Paper)) Using LoadOptions The LoadOptions method can be used to load either a default set of options or to load an options file which has been created by calling the SaveOptions method. [C#] // Load the default set of options TwainGui1.LoadOptions(); // Load previously saved options TwainGui1.LoadOptions("MyOptions.bin"); [Visual Basic] ' Load the default set of options TwainGui1.LoadOptions() ' Load a previously saved set of options TwainGui1.LoadOptions( "MyOptions.bin" ) 7.2 Scanning with the Control The TwainGui control includes a TwainControl instance which can be referenced via the Twain property. Use the TwainControl methods and properties exposed by this property to scan or acquire images. Prior to calling the ScanPage or ScanAll methods, the LoadCapabilities method should be called to initialize the TwainControl with the options the user has selected in the tree view. [C#] // Initialize the TwainControl with the settings from the tree view TwainGui1.LoadCapabilities(); // Start our scan img = TwainGui1.Twain.ScanPage(); TwainGui1.Twain.CloseSource(); [Visual Basic] ' Initialize the TwainControl with the settings from the tree view TwainGui1.LoadCapabilities() // Start our scan img = TwainGui1.Twain.ScanPage() TwainGui1.Twain.CloseSource()

13 ImageMan.Net Twain Developer Guide SourceChanging Event and Saving Selected Options The SourceChanging event is fired when the user selects a new Scanner from the tree view and can be used to save the options for the current scanner and load any options for the newly selected scanner. The current options and values can be saved to a file using the SaveOptions method. [C#] private void TwainGui1_SourceChanging(object sender, DTI.ImageMan.Twain.SourceChangingEventArgs e) { string oldsourcefile; string newsourcefile; oldsourcefile = System.AppDomain.CurrentDomain.BaseDirectory + TwainGui1.Twain.CurrentSource.ProductName + ".bin"; newsourcefile = System.AppDomain.CurrentDomain.BaseDirectory + e.source.productname + ".bin"; // Save the options for the currently selected scanner TwainGui1.SaveOptions(oldsourcefile); // just in case file isn't available select current source so defaults // are initialized correctly. TwainGui1.Twain.CurrentSource = e.source; if (!(TwainGui1.LoadOptions(newsourcefile))) TwainGui1.LoadOptions(); e.handled = true; [Visual Basic] Private Sub TwainGui1_SourceChanging(ByVal sender As Object, ByVal e As DTI.ImageMan.Twain.SourceChangingEventArgs) Handles TwainGui1.SourceChanging Dim oldsourcefile As String Dim newsourcefile As String oldsourcefile = System.AppDomain.CurrentDomain.BaseDirectory() & TwainGui1.Twain.CurrentSource.ProductName & ".bin" newsourcefile = System.AppDomain.CurrentDomain.BaseDirectory() & e.source.productname & ".bin" ' TwainGui1.SaveOptions(oldsourcefile) ' just in case file isn't available select current source so defaults ' are initialized correctly. TwainGui1.Twain.CurrentSource = e.source If (TwainGui1.LoadOptions(newsourcefile) = False) Then TwainGui1.LoadOptions() End If e.handled = True End Sub

14 ImageMan.Net Twain Developer Guide 14 8 Using the controls in Internet Explorer In addition to being used in Windows Forms applications the Twain controls can be hosted in Internet Explorer based web applications. By utlizing the automatic download support in Internet Explorer its possible to run aplications on the client machine without having to install the software manually. In addition to the Twain and TwainGui controls the ImageMan.Net Twain product includes an HttpUpload class which can be used to upload the scanned images to a server side application. A complete sample application which illustrates using the controls and uploading scanned images to an ASP.Net server application is included in the ImageMan.Net Twain installation. A shortcut to the application is installed in your program's menu. 8.1 Client Side Requirements Internet Explorer Version 6.0 or greater.net Framework V Security settings on the client to allow the assembly to be loaded and executed 8.2 Instantiating the Controls The controls are instantiated in an HTML page using the <object...> tag and then manipulated using either VB.Script or Javascript in the html page. The tag to instantiate the Twain and HttpUpload controls looks like: <object id="twain" height=1 width=1 classid="dti.imageman.twain.dll#dti.imageman.twain.twaincontrol"></object> <object id="up" height=1 width=1 classid="dti.imageman.twain.dll#dti.imageman.twain.httpupload"></object> The id parameter specifies the name used to reference the object in your client-side javascript or vb.script code. The classid specifies the name of the assembly to use, a "#" character and then the fully qualified name of the class to be created. If the assembly name doesn't include a path it will be assumed to be located in the same directory as the page. 8.3 Using the controls from client side script As events aren't supported in the client script technologies the ScanPage method must be used for scanning. With the exception of the Scan method all the other properties and methods are available to your application. Internet Explorer doesnt display any error messages if a users security settings havent been updated to allow the Imageman.Net Twain control to be loaded so its important to check the validity of the references to the object so your code can gracefully handle that situation and perhaps provide the user with information on properly configuring their system. The code below displays an alert if the objects haven't been created: if( up.items == null twain.maxpages == null ) alert("your.net Framework Security settings must be configured to run the components in your browser."); Once you have determined the objects are instantiated you can use the TwainControl or TwainGui controls to initiate scanner selection and scanning.

15 ImageMan.Net Twain Developer Guide 15 The code below will scan all the pages in the scanner and then upload them to the specified URL: function Scan() { var img; if(!checkforcontrols() ) return; up.items.clear(); twain.maxpages = -1; img = twain.scanpage(); while( img!= null ) { // Keep scanning pages and adding them to the upload list until there are no more to scan up.items.addimage( img ); img = twain.scanpage(); if( up.items.count > 0 ) { window.status = 'Uploading Images...'; var buplok = up.post( up.items.clear(); window.status = 'Images Uploaded...'; if( buplok ) // If the server processed the images then display its response in the specified DIV tag document.getelementbyid('res').innerhtml = up.response; else alert( up.lasterror ); twain.closesource(); 8.4 Modifying the client.net Framework Security settings By default the.net Framework security configuration will not allow the controls to be instantiated in Internet Explorer. The Site Policy can be updated automatically using an MSI file that the client must run or it can be manually updated using the following steps. 1. Open the.net Framework Configuration tool which is located in the Control Panel/Administrative Tools folder. 2. Select the Runtime Security Policy/Machine/Code Groups/All_Code options 3. Right click on the All_Code item and select New Enter a Name and Description for this Policy ie ImageMan.Net Controls 5. Select Site from the Code Group dropdown list 6. Enter the name of the site containing the controls ie the site where you application will be running from. 7. Select Use Existing Permission Set and Full Trust. 8. Click Finish and the Policy will be created. For additional information on creating an MSI file for to configure a site Policy see

16 ImageMan.Net Twain Developer Guide 16 on the MSDN website. 8.5 Licensing for Web Applications The ImageMan.Net Twain controls includes a royalty free runtime distribution when distributed with desktop applications. For web based applications a deployment license is required for each server on which the application will be run. The server deployment license file must be named dti.imageman.twain.dll.lic and be located in the same directory as the ImageMan.Net Twain assembly. If the license file isnt located the client applications will run in trial mode which will include a trial watermark in each scanned image. For additional information or to purchase a deployment license please contact our sales department at or or via at sales@data-tech.com.

17 ImageMan.Net Twain Developer Guide 17 9 Uploading Images from Client Side Applications 9.1 Uploading Images to the Server The HttpUpload class is used to upload images from the client side application to a url on a server. The image data is PNG compressed and uploaded to the server as Multi-Part mime encoded data allowing it to be easily handled by the serverside application. In ASP.Net applications, the uploaded files can be accessed using the HttpRequest.Files collection and saved to a local drive for further processing. 9.2 Client-side Code The HttpUpload class provides a simple way to upload scanned images and other form data to a remote server. After each image is scanned it can be added to the list of images to be uploaded by calling the Items.AddImage method. Two versions of the AddImage method are available, the first takes an image object and automatically compresses the image as a PNG image and gives it a default name when uploaded, the 2nd overload allows you to name the image object in the upload and also specify the filename associated with the image when it's uploaded. The Items collection of UploadItems objects is used to keep a list of the images and form fields to be uploaded when the Post method is called. The following javascript code could easily be attached to a button handler and scans each page in the scanner, adds the image to the upload list and when all the images have been scanned will upload the images to the server. The response from the server application is then displayed in a DIV element otherwise the Error information is displayed in an alert. <object id="twain" height=1 width=1 classid="dti.imageman.twain.dll#dti.imageman.twain.twaincontrol"></object> <object id="up" height=1 width=1 classid="dti.imageman.twain.dll#dti.imageman.twain.httpupload"></object>... function Scan() { var img; if(!checkforcontrols() ) return; up.items.clear(); twain.maxpages = -1; img = twain.scanpage(); while( img!= null ) { up.items.addimage( img ); img = twain.scanpage(); if( up.items.count > 0 ) { window.status = 'Uploading Images...'; var buplok = up.post( up.items.clear(); window.status = 'Images Uploaded...';

18 ImageMan.Net Twain Developer Guide 18 if( buplok ) document.getelementbyid('res').innerhtml = up.response; else alert( up.lasterror ); twain.closesource(); Form data can also be uploaded along with the Image data using the AddFormField method. This allows the client-side application to include other application specific data with the uploaded image data.

19 ImageMan.Net Twain Developer Guide Handling Uploaded Images on the Server Side 10.1 Using ASP.Net to handle uploaded files The HttpUpload class uploads the image data as Multi-Part Mime encoded data which can be accessed using the HttpRequest.Files collection in the serverside application. The following code could be located in the Page_Load event and saves each uploaded image to a local file. foreach( string file in Request.Files ) { HttpPostedFile f = Request.Files[ file ]; // Create a unique local filename using the current tickcount string filename = DateTime.Now.Ticks.ToString() + ".png"; //Save the image in the specified directory f.saveas( ConfigurationSettings.AppSettings["ImageDir"] + filename ); By default, the ASP.Net limits the maximum size of uploaded files to 4096K. This can be overridden by setting the maxrequestlength property in your web.config file and specifying a larger value. Add: <httpruntime maxrequestlength="128000" /> under the line <system.web> in your application's web.config file. The maxrequestlength property specifies the maximum size in kilobytes..

20 ImageMan.Net Twain Developer Guide Obtaining Support The ImageMan.Net Twain toolkit includes 60 days of free phone and support from the time of the first call. After that period several plans are available depending on the level of support required. Visit our Online Support Center for additional information on the available plans Contacting Support Phone You may call our support engineers at between the hours of 9-5 EST (GMT-5). You can your questions to us at Online You can post your questions on our website's support forums at When contacting support please be sure to include your serial number, development environment and as many details about the issue as possible. Doing so will help us to resolve your issue in the fastest manner possible.

21 ImageMan.Net Twain Developer Guide Contacting Data Techniques Data Techniques, Inc. 58 Blue Ridge Lane Burnsville, NC Sales Phone: or Fax: Technical Support Phone:

22 ImageMan.Net Twain Developer Guide License Agreement ImageMan.Net Twain LICENSE AGREEMENT 1. IMPORTANT NOTICE This is a legal agreement between Data Techniques and you, the licensee. 2. ON ONE COMPUTER Data Techniques licenses this product for use on a single CPU only. You must obtain a licensed copy (or special license) for each programmer or workstation on a network on which the product is used, whether in source or object format. 3. LICENSE TO REPRODUCE, USE AND DISTRIBUTE You may distribute only the ImageMan.Net files listed as Redistributable in the Online Help and Documentation with your end-user applications. You may not distribute any ImageMan.Net files not listed as Redistributable. You may distribute an unlimited number of copies of the controls with your Windows Forms applications with no royalties. Applications which run on Web Servers require a server license. One server license is included with each developer license, additional licenses can be purchased from Data Techniques. You may only use the ImageMan.Net software in end-user software that does not provide the end-user any development capability or ability to further redistribute the licensed code. You also may not use the ImageMan.Net code in a product which is competitive with the ImageMan.Net product including but not limited to a developer toolkit or similar product. 4. OWNERSHIP, COPYRIGHT AND TRANSFER All copies of ImageMan.Net are owned by Data Techniques, Inc. or its suppliers and are protected by United States copyright laws and international treaty provisions. You must treat Data Techniques, Inc. software products as any other copyrighted material (e.g., book or musical recording), except that you may make a reasonable number of backups for archival purposes, provided that you have only one working copy at a time for each copy of the product licensed to you. You may not transfer, sublicense, rent, lease or assign any of the above license or any Data Techniques, Inc. software. 5. TERM AND TERMINATION You may terminate the above license at any time by returning or destroying all copies of ImageMan.Net in your possession and notifying Data Techniques, Inc. The above license will terminate immediately if you infringe upon Data Techniques, Inc. s copyrights or breach this agreement. 6. LIMITED WARRANTY Data Techniques provides a 60-day money-back guarantee for the ImageMan.Net product. You may return the version of ImageMan.Net at any time within 60 days of the date of purchase for any reason whatsoever by calling Data Techniques, Inc. and obtaining a return authorization number (RMA). Under no circumstances will Data Techniques, Inc. accept a returned product without an RMA, or a package in which the source diskette envelope has been opened. 7. NO LIABILITY FOR CONSEQUENTIAL DAMAGES IN NO EVENT SHALL DATA TECHNIQUES, INC. OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER STEMMING FROM THE USE OR MISUSE OF THIS PRODUCT, EVEN IF DATA TECHNIQUES HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU.

BarcodeX.NET component

BarcodeX.NET component BarcodeX.NET component By Fath Software Contents Introduction...2 License...3 Technical support...5 Internet Mail...5 World Wide Web...5 Developer s Guide...6 Adding BarcodeX to your toolbox...6 Supported

More information

Report Viewer Version 8.1 Getting Started Guide

Report Viewer Version 8.1 Getting Started Guide Report Viewer Version 8.1 Getting Started Guide Entire Contents Copyright 1988-2017, CyberMetrics Corporation All Rights Reserved Worldwide. GTLRV8.1-11292017 U.S. GOVERNMENT RESTRICTED RIGHTS This software

More information

Price List Utilities. For Dynamics CRM 2016

Price List Utilities. For Dynamics CRM 2016 Price List Utilities For Dynamics CRM 2016 Page 1 of 19 Price List Utilities 2016 Copyright Warranty disclaimer Limitation of liability License agreement Copyright 2016 Dynamics Professional Solutions.

More information

KEPServerEx Client Connectivity Guide

KEPServerEx Client Connectivity Guide KEPServerEx Client Connectivity Guide For ObjectAutomation OAenterprise KTSM-00030 v. 1.03 Copyright 2005 Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Software Installation Guide 2013 TOSHIBA TEC CORPORATION All rights reserved Under the copyright laws, this manual cannot be reproduced in any form without prior written

More information

R227. Terms Code Discount per Sales Code Qty Ordered AR-1227

R227. Terms Code Discount per Sales Code Qty Ordered AR-1227 DSD Business Systems MAS 90/200 Enhancements R227 Terms Code Discount per Sales Code Qty Ordered AR-1227 Version 5.10 2 Terms Code Discount per Sales Code Qty Ordered Information in this document is subject

More information

Installation Guide Installing / Licensing / Unlocking Kepware Products

Installation Guide Installing / Licensing / Unlocking Kepware Products Installation Guide Installing / Licensing / Unlocking Kepware Products License Registration & Unlock online at www.kepware.com/mykepware Kepware is the world leader in communication software for automation.

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Software Installation Guide 2013 TOSHIBA TEC CORPORATION All rights reserved Under the copyright laws, this manual cannot be reproduced in any form without prior written

More information

Installation and Configuration Manual. Price List Utilities. for Microsoft Dynamics CRM Dynamics Professional Solutions Ltd 1 / 14

Installation and Configuration Manual. Price List Utilities. for Microsoft Dynamics CRM Dynamics Professional Solutions Ltd 1 / 14 Installation and Configuration Manual Price List Utilities for Microsoft Dynamics CRM 2011 Dynamics Professional Solutions Ltd 1 / 14 Copyright Warranty disclaimer Limitation of liability License agreement

More information

ARIS.Net Scripting Tool for ArcMap User's Manual

ARIS.Net Scripting Tool for ArcMap User's Manual ARIS.Net Scripting Tool for ArcMap User's Manual 21 March 2014 ARIS B.V. http://www.aris.nl/ Table of contents 1 Introduction...3 2 System requirements...4 3 Installation...5 3.1 Installing.Net Scripting

More information

Getting Started Guide

Getting Started Guide Getting Started Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is subject

More information

OCRDLL (ClassOCR.dll) User Guide

OCRDLL (ClassOCR.dll) User Guide OCRDLL (ClassOCR.dll) Standard Version Version 2.10 User Guide 25 May 2010 For latest version of the user guide please go to www.informatik.com/manuals.html 1 Table of Contents Summary Instructions...3

More information

FLIPBOOK CREATOR FOR IPHONE Realistic book reading experience on ipad

FLIPBOOK CREATOR FOR IPHONE   Realistic book reading experience on ipad WWW.FLIPPAGEMAKER.COM FLIPBOOK CREATOR FOR IPHONE Realistic book reading experience on ipad About FlipBook Creator for iphone FlipBook Creator for iphone is a flippingbook maker converts PDF to flipping

More information

CompleteView Admin Console User Manual. CompleteView Version 4.6

CompleteView Admin Console User Manual. CompleteView Version 4.6 CompleteView Admin Console User Manual CompleteView Version 4.6 Table of Contents Introduction... 1 End User License Agreement...1 Overview...2 Configuration... 3 Starting the Admin Console...3 Adding

More information

IPNexus Server Secure Instant Messaging & Integrated Collaboration

IPNexus Server Secure Instant Messaging & Integrated Collaboration IPNexus Server Secure Instant Messaging & Integrated Collaboration Version 1.5 Installation & Setup Guide DOC00023 Rev. 1.0 01.03 VCON IPNexus Server Installation & Setup Guide 1 2003 VCON Ltd. All Rights

More information

FLIP PDF FOR IPAD. Realistic book reading experience on ipad

FLIP PDF FOR IPAD. Realistic book reading experience on ipad WWW.FLIPBUILDER.COM FLIP PDF FOR IPAD Realistic book reading experience on ipad About Flip PDF for ipad Flip PDF for ipad is a stunning utility to convert PDF files into ipad friendly imagazines with page-flipping

More information

KEPServerEX Client Connectivity Guide

KEPServerEX Client Connectivity Guide KEPServerEX Client Connectivity Guide For Siemen s WinCC KTSM-00008 v. 1.02 Copyright 2001, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying this license

More information

KEPServerEX Client Connectivity Guide

KEPServerEX Client Connectivity Guide KEPServerEX Client Connectivity Guide For Kontron Czech Aspic 3.30 KTSM-00026 v. 1.02 Copyright 2004, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying

More information

KepserverEx Client Connectivity Guide

KepserverEx Client Connectivity Guide Kepware Products for Windows 95,98, 2000, NT, And XP KepserverEx Client Connectivity Guide For Intellution s ifix KTSM-00017 Copyright 2001, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND

More information

Web CAD SDK Reference

Web CAD SDK Reference Web CAD SDK Reference Contents What's new... 1 Introduction... 3 How to run... 3 How to add the control without design-time... 3 How to add design-time control... 5 How to set SHX fonts... 7 How to load

More information

USER GUIDE. Version Number

USER GUIDE. Version Number USER GUIDE Version Number 4.3.2016.0210 Table of Contents Welcome... 3 Important Information... 4 Recommended FSX:Steam Settings... 5 Minimize/Quit...9 Texture Selection...10 Texture Ribbon...11 Selecting

More information

Foreword 0. ServiceClass Property GetActualSize... Method. SaveAsMemory... Method. SetStructuredAppend... Method. Orientation Enumeration

Foreword 0. ServiceClass Property GetActualSize... Method. SaveAsMemory... Method. SetStructuredAppend... Method. Orientation Enumeration Contents 1 Table of Contents Foreword 0 Part I Introduction 2 Part II Installation 2 1 Trial Version... 2 2 Full Version... 3 Part III How to Distribute It 4 Part IV Reference Guide 4 1 Properties... 4

More information

There are only a few controls you need to learn about in order to use Black Cat Timer:

There are only a few controls you need to learn about in order to use Black Cat Timer: Black Cat Timer 1.0.0b1 October 6, 2001 Black Cat Timer is a timing and scheduling program for the Macintosh. The registration fee is only $9.99. You re free to evaluate Black Cat Timer for 30 days, after

More information

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

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

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide Digipass Plug-In for SBR SBR Plug-In SBR Steel-Belted RADIUS Installation G uide Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product

More information

KepserverEx Client Connectivity Guide

KepserverEx Client Connectivity Guide Kepware Products for Windows 95,98, 2000, NT, And XP KepserverEx Client Connectivity Guide For Rockwell Software s RSView KTSM-00002 Copyright 2001, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT

More information

Foreword 0. GetActualSize... Method GetPatternData... Method. SaveAsMemory... Method. Orientation Enumeration

Foreword 0. GetActualSize... Method GetPatternData... Method. SaveAsMemory... Method. Orientation Enumeration Contents 1 Table of Contents Foreword 0 Part I Introduction 3 Part II Installation 3 1 Trial Version... 3 2 Full Version... 4 Part III How to Distribute It 5 Part IV Reference Guide 5 1 Properties... 5

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

ARIS.Net Scripting Tool for ArcMap User's Manual

ARIS.Net Scripting Tool for ArcMap User's Manual ARIS.Net Scripting Tool for ArcMap User's Manual 7 March 2016 ARIS B.V. http://www.aris.nl/ Table of contents 1 Introduction...3 2 System requirements...4 3 Installation...5 3.1 Installing.Net Scripting

More information

S056. Segment Substitution On the Fly SO-1056

S056. Segment Substitution On the Fly SO-1056 DSD Business Systems MAS 90/200 Enhancements S056 Segment Substitution On the Fly SO-1056 Version 5.10 2 Segment Substitution On the Fly Information in this document is subject to change without notice.

More information

KEPServerEX Client Connectivity Guide

KEPServerEX Client Connectivity Guide KEPServerEX Client Connectivity Guide For LookoutDirect KTSM-00014 v. 1.02 Copyright 2001, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying this license

More information

VP-UML Installation Guide

VP-UML Installation Guide Visual Paradigm for UML 6.0 Installation Guide The software and documentation are furnished under the Visual Paradigm for UML license agreement and may be used only in accordance with the terms of the

More information

XIA Links. Administrator's Guide. Version: 3.0. Copyright 2017, CENTREL Solutions

XIA Links. Administrator's Guide. Version: 3.0. Copyright 2017, CENTREL Solutions Administrator's Guide Version: 3.0 Copyright 2017, CENTREL Solutions Table of contents About... 4 Installation... 6 Installation Requirements (Server)... 7 Prerequisites (Windows Server 2016)... 9 Prerequisites

More information

ActiveX xtra Version 1.0

ActiveX xtra Version 1.0 ActiveX xtra Version 1.0 www.xtramania.com All trademarked names mentioned in this document and product are used for editorial purposes only, with no intention of infringing upon the trademarks. ActiveX

More information

SpanDisc. U s e r s G u i d e

SpanDisc. U s e r s G u i d e SpanDisc U s e r s G u i d e Introduction SpanDisc User s Guide SpanDisc is a complete disc archival and backup solution. SpanDisc uses the automation features or Rimage Corporation s Digital Publishing

More information

Welcome to Windows 10 Manager

Welcome to Windows 10 Manager Welcome to Windows 10 Manager Software Introduction http://www.yamicsoft.com contact@yamicsoft.com support@yamicsoft.com suggestion@yamicsoft.com Software Introduction Welcome to Windows 10 Manager and

More information

CompleteView CV Spotlight User Manual. CompleteView Version 4.7.1

CompleteView CV Spotlight User Manual. CompleteView Version 4.7.1 CompleteView CV Spotlight User Manual CompleteView Version 4.7.1 End User License Agreement Salient CompleteView SOFTWARE LICENSE 1. GRANT OF LICENSE. Salient grants to you the right to use one (1) copy

More information

TWAIN 163/211. User Manual

TWAIN 163/211. User Manual TWAIN 163/211 User Manual Contents 1 Introduction 1.1 Software end user license agreement... 1-5 1.2 Explanation of manual conventions... 1-8 Safety advices... 1-8 Sequence of action... 1-8 Tips... 1-9

More information

DME-N Network Driver Installation Guide for M7CL

DME-N Network Driver Installation Guide for M7CL DME-N Network Driver Installation Guide for M7CL ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED

More information

CompleteView Video Player User Manual. CompleteView Version 4.6.1

CompleteView Video Player User Manual. CompleteView Version 4.6.1 CompleteView Video Player User Manual CompleteView Version 4.6.1 Table of Contents Introduction... 3 End User License Agreement... 4 System Requirements... 5 Exporting the Video Player from Video Client...

More information

3DPAGEFLIP FOR IMAGE Image to 3DPageFlip Convert Images into Page-flipping ebooks directly. User Documentation.

3DPAGEFLIP FOR IMAGE  Image to 3DPageFlip Convert Images into Page-flipping ebooks directly. User Documentation. WWW.3DPAGEFLIP.COM 3DPAGEFLIP FOR IMAGE Page 1 of 27 About 3DPAGEFLIP for IMAGE Convert Image files to Digital Magazines, Newspapers, Advertisements, Catalogues, Brochures, Instructional Manuals, Newsletters,

More information

SliceAndDice Online Manual

SliceAndDice Online Manual Online Manual 2001 Stone Design Corp. All Rights Reserved. 2 3 4 7 26 34 36 37 This document is searchable online from s Help menu. Got an image that you want to use for navigation on your web site? Want

More information

Setup Guide. Version 0.5

Setup Guide. Version 0.5 Setup Guide Version 0.5 TRADEMARKS AND COPYRIGHT Trademarks Microsoft Windows, Windows NT, and the brand names and other product names of other Microsoft products are trademarks of Microsoft Corporation

More information

LICENSE TERMS AND CONDITIONS

LICENSE TERMS AND CONDITIONS This document certifies the license for: Licensee: goldkonzepte Download date: 16 May 2017 Search engine Search engine Map Search Search Stats Analytics Speedometer Devices Browser Link Shield Browser

More information

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager ATTENTION Clicking on a PDF hyperlink takes you to the appropriate page If necessary, scroll up or down the page to see the beginning of the referenced section NN47300-300

More information

ABB Network Partner. User s Manual CAP/REx 500*2.0

ABB Network Partner. User s Manual CAP/REx 500*2.0 User s Manual CAP/REx 500*2.0 This manual belongs to: Contents Chapter Page About this manual 1 Introduction 3 Instructions 7 References 15 Customer feedback report 17 Software Registration Form 19 Index

More information

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide INTEGRATION TO MICROSOFT EXCHANGE Installation Guide V44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER

More information

KEPServerEX Client Connectivity Guide

KEPServerEX Client Connectivity Guide KEPServerEX Client Connectivity Guide For Intellution s FIX32 KTSM-00005 v. 1.02 Copyright 2001, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying this

More information

AVS4YOU Programs Help

AVS4YOU Programs Help AVS4YOU Help - AVS Document Converter AVS4YOU Programs Help AVS Document Converter www.avs4you.com Online Media Technologies, Ltd., UK. 2004-2012 All rights reserved AVS4YOU Programs Help Page 2 of 39

More information

VW INTERFACE. The AutoSoft DMS and Finance Assistant Integration with VW OEM and VCI. The ASI and VW OEM Interface Solution

VW INTERFACE. The AutoSoft DMS and Finance Assistant Integration with VW OEM and VCI. The ASI and VW OEM Interface Solution AUTOSOFT INTEGRATION WITH VW OEM & VCI VW INTERFACE The AutoSoft DMS and Finance Assistant Integration with VW OEM and VCI These pages list all the Volkswagen OEM and VCI Interfaces available for your

More information

Stellar WAB to PST Converter 1.0

Stellar WAB to PST Converter 1.0 Stellar WAB to PST Converter 1.0 1 Overview Stellar WAB to PST Converter software converts Outlook Express Address Book, also known as Windows Address Book (WAB) files to Microsoft Outlook (PST) files.

More information

Relativity for Windows Workstations

Relativity for Windows Workstations Relativity for Windows Workstations Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS,

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

GLDE. General Ledger Detail Editor

GLDE. General Ledger Detail Editor DSD Business Systems Sage 100 Enhancements GLDE General Ledger Detail Editor Version 5.30 2 General Ledger Detail Editor Information in this document is subject to change without notice. Copyright 1993-2012,

More information

SAML v1.1 for.net Developer Guide

SAML v1.1 for.net Developer Guide SAML v1.1 for.net Developer Guide Copyright ComponentSpace Pty Ltd 2004-2017. All rights reserved. www.componentspace.com Contents 1 Introduction... 1 1.1 Features... 1 1.2 Benefits... 1 1.3 Prerequisites...

More information

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0 CX Recorder User Guide Version 1.0 February 8, 2010 Copyright 2010 SENSR LLC. All Rights Reserved. R001-418-V1.0 TABLE OF CONTENTS 1 PREAMBLE 3 1.1 Software License Agreement 3 2 INSTALLING CXRECORDER

More information

StreamEngine Encoder

StreamEngine Encoder Discover Video Encoder User Guide Version 1.1 3/23/2017 Discover Video LLC www.discovervideo.com General Description The Discover Video Encoder accepts live audio/video inputs and encodes the input into

More information

AhnLab Software License Agreement

AhnLab Software License Agreement AhnLab Software License Agreement IMPORTANT - READ CAREFULLY BEFORE USING THE SOFTWARE. This AhnLab Software License Agreement (this "Agreement") is a legal agreement by and between you and AhnLab, Inc.

More information

Upgrading BMDM and BMRG Software and MPM, BDS and DCM Firmware

Upgrading BMDM and BMRG Software and MPM, BDS and DCM Firmware Upgrading BMDM and BMRG Software and MPM, BDS and DCM Firmware 990 South Rogers Circle, Suite 11 Boca Raton, FL 33487 Tel: 561-997-2299 Fax: 561-997-5588 www.alber.com 1. Warranty and Limitation of Liability

More information

SensView User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0

SensView User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0 SensView User Guide Version 1.0 February 8, 2010 Copyright 2010 SENSR LLC. All Rights Reserved. R001-419-V1.0 TABLE OF CONTENTS 1 PREAMBLE 3 1.1 Software License Agreement 3 2 INSTALLING SENSVIEW 5 2.1

More information

CompleteView Video Player User Manual. CompleteView Version 4.5.1

CompleteView Video Player User Manual. CompleteView Version 4.5.1 CompleteView Video Player User Manual CompleteView Version 4.5.1 Table of Contents Introduction... 3 End User License Agreement... 4 System Requirements... 5 Exporting the Video Player from Video Client...

More information

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager NN47300-300 Document status: Standard Document version: 0401 Document date: 26 March 2008 All Rights Reserved The information in this document is subject to change

More information

WAN Emulator. Copyright (c) 2007 XP Idea, LLC. All rights reserved.

WAN Emulator. Copyright (c) 2007 XP Idea, LLC. All rights reserved. WAN Emulator Copyright (c) 2007 XP Idea, LLC. All rights reserved. WAN Emulator Table of Contents Introduction 1 System Requirements 2 Installation 3 Configuration 5 Performance Counters 7 Troubleshooting

More information

Pocket ESA. Version 1. User s Guide. Copyright (c) GAEA Technologies Ltd. All rights reserved.

Pocket ESA. Version 1. User s Guide. Copyright (c) GAEA Technologies Ltd. All rights reserved. Pocket ESA Version 1 User s Guide Copyright (c) 2004. GAEA Technologies Ltd. All rights reserved. Not to be reprinted without the written consent of GAEA Technologies Ltd. Printed in Canada Pocket ESA

More information

Symantec ediscovery Platform

Symantec ediscovery Platform Symantec ediscovery Platform Native Viewer (ActiveX) Installation Guide 7.1.5 Symantec ediscovery Platform : Native Viewer (ActiveX) Installation Guide The software described in this book is furnished

More information

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

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

More information

EYER hybrid User Guide

EYER hybrid User Guide EYER hybrid User Guide www.zew3d.com Index Section: INTRODUCTION 1. Welcome...4 What is EYER and what does it make...4 What is new in EYER Hybrid...4 2. About ZEW...5 3. System requirements...6 4. Installation...7

More information

Dell Statistica. Statistica Enterprise Server Installation Instructions

Dell Statistica. Statistica Enterprise Server Installation Instructions Dell Statistica Statistica Enterprise Server Installation Instructions 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

LinkMaster Client Connectivity Guide

LinkMaster Client Connectivity Guide LinkMaster Client Connectivity Guide KTSM-00022 v. 1.04 Copyright 2001, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying this license agreement (the

More information

FLIP BOOK MAKER FOR PPT. Create your flipping book from PPT files

FLIP BOOK MAKER FOR PPT. Create your flipping book from PPT files WWW.FLIPBOOKMAKER.COM FLIP BOOK MAKER FOR PPT Create your flipping book from PPT files About Flip Book Maker for PPT Flip Book Maker for PPT is your easy way to convert Microsoft PowerPoint Presentations

More information

RealPresence Media Manager

RealPresence Media Manager RealPresence CloudAXIS Suite Administrators Guide Software 1.3.1 USER GUIDE Software 6.7 January 2015 3725-75302-001A RealPresence Media Manager Polycom, Inc. 1 Copyright 2015, Polycom, Inc. All rights

More information

Client Portal Client User Manual

Client Portal Client User Manual Client Portal Client User Manual Version 2.0 Contents Client Portal User Manual... 3 Groups and User Levels... 3 Inviting Users... 5 Terms of Use... 9 Removing Users... 12 Password Reset... 14 List Items

More information

Upgrading to Sage ACT! 2013 from ACT! 3.x, 4.x, 5.x (2000), or 6.x (2004)

Upgrading to Sage ACT! 2013 from ACT! 3.x, 4.x, 5.x (2000), or 6.x (2004) Upgrading to Sage ACT! 2013 from ACT! 3.x, 4.x, 5.x (2000), or 6.x (2004) Copyright 2012 Sage Software, Inc. All Rights Reserved. Sage, the Sage logos, ACT!, and the Sage product and service names mentioned

More information

FirePoint 8. Setup & Quick Tour

FirePoint 8. Setup & Quick Tour FirePoint 8 Setup & Quick Tour Records Management System Copyright (C), 2006 End2End, Inc. End2End, Inc. 6366 Commerce Blvd #330 Rohnert Park, CA 94928 PLEASE READ THIS LICENSE AND DISCLAIMER OF WARRANTY

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

Amyuni PDF Creator for ActiveX

Amyuni PDF Creator for ActiveX Amyuni PDF Creator for ActiveX For PDF and XPS Version 4.5 Professional Quick Start Guide for Developers Updated October 2010 AMYUNI Consultants AMYUNI Technologies www.amyuni.com Contents Legal Information...

More information

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK Relativity Designer Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Patch Manager INSTALLATION GUIDE. Version Last Updated: September 25, 2017

Patch Manager INSTALLATION GUIDE. Version Last Updated: September 25, 2017 INSTALLATION GUIDE Patch Manager Version 2.1.5 Last Updated: September 25, 2017 Retrieve the latest version from: https://support.solarwinds.com/success_center/patch_manager/patch_manager_documentation

More information

Quest ChangeAuditor 5.1 FOR LDAP. User Guide

Quest ChangeAuditor 5.1 FOR LDAP. User Guide Quest ChangeAuditor FOR LDAP 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described in this

More information

IMAGE TO 3D PAGEFLIP

IMAGE TO 3D PAGEFLIP WWW.3DPAGEFLIP.COM IMAGE TO 3D PAGEFLIP FOR MAC Build 3D page-flip ebook with Images on Mac About Image to 3DPageflip for Mac Want to create a digital album with a set of pictures? Image to 3D PageFlip

More information

User Guide. Portable Calibration Module

User Guide. Portable Calibration Module Portable Calibration Module User Guide CyberMetrics Corporation 1523 W. Whispering Wind Drive Suite 100 Phoenix, Arizona 85085 USA Toll-free: 1-800-777-7020 (USA) Phone: (480) 922-7300 Fax: (480) 922-7400

More information

NetSupport Protect 2.00 Readme

NetSupport Protect 2.00 Readme NetSupport Protect 2.00 Readme Contents Introduction...3 Overview of Features...4 Licence Agreement...5 System Requirements...6 Upgrading NetSupport Protect...7 Limitations/known Issues...7 Introduction

More information

KEPServerEX Client Connectivity Guide

KEPServerEX Client Connectivity Guide KEPServerEX Client Connectivity Guide For OSI PI KTSM-00012 v. 1.03 Copyright 2001, Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying this license agreement

More information

Installation & Set-Up Guide (For PFW users)

Installation & Set-Up Guide (For PFW users) STC Utilities Installation & Set-Up Guide (For PFW users) Service Technologies Corporation makes no representations or warranties with respect to the contents of this guide and disclaims any implied warranties

More information

InstallKey Version 5.7

InstallKey Version 5.7 InstallKey Version 5.7 Installation Key And Validation Framework By LomaCons May 17, 2015 Table of Contents 1. Product Overview... 7 Features... 7 Overview... 8 InstallKey Architecture... 8 2. Use Cases...

More information

VSC-PCTS2003 TEST SUITE TIME-LIMITED LICENSE AGREEMENT

VSC-PCTS2003 TEST SUITE TIME-LIMITED LICENSE AGREEMENT VSC-PCTS2003 TEST SUITE TIME-LIMITED LICENSE AGREEMENT Notes These notes are intended to help prospective licensees complete the attached Test Suite Time-Limited License Agreement. If you wish to execute

More information

Toad DevOps Toolkit 1.0

Toad DevOps Toolkit 1.0 Toad DevOps Toolkit 1.0 Release Notes 9/29/2017 These release notes provide information about the Toad DevOps Toolkit release. About Toad DevOps Toolkit Toad DevOps Toolkit exposes key Toad for Oracle

More information

Stellar Phoenix Entourage Repair

Stellar Phoenix Entourage Repair Stellar Phoenix Entourage Repair User Guide Version 2.0 Overview Microsoft Entourage is an e-mail client software used to manage personal information like notes, address book, personalized calendar, tasks

More information

Activating AspxCodeGen 4.0

Activating AspxCodeGen 4.0 Activating AspxCodeGen 4.0 The first time you open AspxCodeGen 4 Professional Plus edition you will be presented with an activation form as shown in Figure 1. You will not be shown the activation form

More information

Using Kodak Imaging For Ariel Use

Using Kodak Imaging For Ariel Use Using Kodak Imaging For Ariel Use Shortcut to kodakimg.lnk Table of contents: Directions for scanning with the Fujitsu 4097D..pg. 1 Directions for Editing in Kodak Imaging....pg. 4 Directions for Saving

More information

User Guide. Portable Calibration Module

User Guide. Portable Calibration Module Portable Calibration Module User Guide CyberMetrics Corporation 1523 W. Whispering Wind Drive Suite 100 Phoenix, Arizona 85085 USA Toll-free: 1-800-777-7020 (USA) Phone: (480) 922-7300 Fax: (480) 922-7400

More information

FaciliWorks. Desktop CMMS Installation Guide

FaciliWorks. Desktop CMMS Installation Guide FaciliWorks Desktop CMMS Installation Guide FaciliWorks Desktop CMMS Installation Guide CyberMetrics Corporation 1523 West Whispering Wind Drive, Suite 100 Phoenix, Arizona 85085 USA Toll-free: 1-800-776-3090

More information

Tiffmaker Desktop Version. User Guide

Tiffmaker Desktop Version. User Guide Tiffmaker Desktop Version Version 2.1 User Guide Please print this user guide for easy reference. October 15, 2009 Table of Contents Introduction...3 Trial Version...3 Step-by-Step Procedure...3 Technical

More information

Beta Testing Licence Agreement

Beta Testing Licence Agreement Beta Testing Licence Agreement This Beta Testing Licence Agreement is a legal agreement (hereinafter Agreement ) between BullGuard UK Limited ( BullGuard ) and you, either an individual or a single entity,

More information

voptimizer Pro Version What s New

voptimizer Pro Version What s New voptimizer Pro Version 3.1.1 What s New 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

Version User Guide. Page 1 digrotate dignuke

Version User Guide. Page 1 digrotate dignuke Version 4.0.0 User Guide Page 1 digrotate 4.0.0 2009 dignuke Table of Contents Whats new in 4.0?...4 Whats new in 3.0?...4 Introduction...6 Installation...8 Uninstalling...8 Setup...9 Import from RSS...9

More information

YOU ACKNOWLEDGE YOU HAVE READ AND UNDERSTAND THIS AGREEMENT AND AGREE TO BE BOUND BY ITS TERMS.

YOU ACKNOWLEDGE YOU HAVE READ AND UNDERSTAND THIS AGREEMENT AND AGREE TO BE BOUND BY ITS TERMS. User Guide Acknowledgements Party Print (TM) and Hot Folder Print (TM) DNP Photo Imaging America, Inc 2013. All Rights Reserved. Party Print/Hot Folder Print (TM) Software Licensing Agreement PLEASE READ

More information

Knowledge Portal 2.6. Installation and Configuration Guide

Knowledge Portal 2.6. Installation and Configuration Guide Knowledge Portal 2.6 Installation and Configuration Guide 2012 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Schneider Electric License Manager

Schneider Electric License Manager Schneider Electric License Manager EIO0000001070 11/2012 Schneider Electric License Manager User Manual 12/2012 EIO0000001070.01 www.schneider-electric.com The information provided in this documentation

More information