Software License Agreement

Size: px
Start display at page:

Download "Software License Agreement"

Transcription

1 Software License Agreement WinPDF Converter For.NET Version ALL RIGHTS RESERVED BY SUB SYSTEMS, INC New Meister Lane, #2712 Pflugerville, TX Software License Agreement The Software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The Software is licensed, not sold. This LICENSE AGREEMENT grants you the following rights: A. This product is licensed per developer basis only. Each developer working with this package needs to purchase a separate license. B. The purchaser has the right to modify and link the DLL functions into their application. Such an application is free of distribution royalties with these conditions: the target application is not a stand-alone PDF Converter; the target application uses this product for one operating system platform only; and the source code (or part) of the editor is not distributed in any form. C. The DESKTOP LICENSE allows for the desktop application development. Your desktop application using this product can be distributed royalty-free. Each desktop license allows one developer to use this product on up to two development computers. A developer must purchase additional licenses to use the product on more than two development computers. D. The SERVER LICENSE allows for the server application development. The server licenses must be purchased separately when using this product in a server application. Additionally, the product is licensed per developer basis. Only an UNLIMITED SERVER LICENSE allows for royalty-free distribution of your server applications using this product. E. ENTERPRISE LICENSE: The large corporations with revenue more than $500 million and large government entities must purchase an Enterprise License. An Enterprise license is also applicable if any target customer of your product using the Software have revenue more than $500 million. Please contact us at info@subsystems.com for a quote for an Enterprise License. F. Your license rights under this LICENSE AGREEMENT are non-exclusive. All rights not expressly granted herein are reserved by Licensor. G. You may not sell, transfer or convey the software license to any third party without Licensor's prior express written consent. This software is designed keeping the safety and the reliability concerns as the main Page 1

2 considerations. Every effort has been made to make the product reliable and error free. However, Sub Systems, Inc. makes no warranties against any damage, direct or indirect, resulting from the use of the software or the manual and can not be held responsible for the same. The product is provided 'as is' without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of suitability for a particular purpose. The buyer assumes the entire risk of any damage caused by this software. In no event shall Sub Systems, Inc. be liable for damage of any kind, loss of data, loss of profits, interruption of business or other financial losses arising directly or indirectly from the use of this product. Any liability of Sub Systems will be exclusively limited to refund of purchase price. Sub Systems, Inc. offers a 30 day money back guarantee with the product. Must call for an RMA number before returning the product. Page 2

3 Desclaimer This software is designed keeping the safety and the reliability concerns as the main considerations. Every effort has been made to make the product reliable and error free. However, Sub Systems, Inc. makes no warranties against any damage, direct or indirect, resulting from the use of the software or the manual and can not be held responsible for the same. Windows 95/98/NT/2000/XP, Visual C++, Visual Studio.NET, and Visual Basic are the trademarks of Microsoft Corp. (for ease of reading Windows refer to MS Windows) Delphi is the trademark of Borland International. Page 3

4 Getting Started This chapter describes the contents of the software diskettes and provides a step by step process of incorporating WinPDF Converter into your application. In This Chapter Files Incorporating the DLL into Your Application Sample Conversion Code Page 4

5 Files The package contains the DLL and header files. The package also includes a set of files to construct a demo program. The demo program shows by example the process of linking the DLL to your program. DLL Demo Files: The following demo files are included in the c_demo.zip file. DEMO.CS pdn13.dll KEY.TXT Source code for the demo program The DLL file A text file containing your product license key. Page 5

6 Incorporating the DLL into Your Application This product can be used in two ways. You can use this product with TE Developer's Kit to convert the current document into the PDF format. You can also use this product directly within your application to generate PDF output. When using WinPDF Converter with TE Developer's Kit Copy the pdn13.dll file to the folder which contains the ter32.dll file. Then please follow the help file for TE Developer's Kit, topic: PDF Support. When using WinPDf Converter directly within your application A.NET application should include the namespace SubSystems.PD into the application module that needs to call the PDN dll. It also should include a reference to the pdn13.dll library. Please also make sure that the pdn13.dll file is copied to a directory available at the run-time. The PDF file generation process is simply as following: Pdn pdf=new Pdn() pdf.licensekey="..." ' your product license key is available in the key.txt file. pdf.pdcstartdoc(outfile) for each page - begin page specifying the width and height of the page in twips: pdf.pdcstartpage(width,height) // make necessary.net calls to generate and draw the page using text, images, and objects functions. The page should be drawn to a metafile Graphics object. pdf.pdcdrawmetafile(metafile,metaunitx,metaunity) pdf.pdcendpage() pdf.pdcenddoc() Please refer to the next topic for a sample code.. Page 6

7 Sample Conversion Code Please ensure that pdn13.dll file is available in the project directory. Set the reference for pdn13.dll in your project. Now set namespace for the product: using SubSystems.PD; Imports SubSystems.PD // C# example ' VB Example Now create a Pdn type object and set the product license key: Hrn.HrsSetLicenseKey("xxxxx-yyyyy-zzzzz") Pdn pdf = new Pdn() // C# example dim pdf as Pdn ' VB example pdf.licensekey="..." Your license key is ed to you after your order is processed. You can also use other properties such as Author, Title, etc to set the PDF header information at this point. Now use these steps to generate a sample PDF page: 1. First you would create a new document session. Here is an example: pdf.pdcstartdoc(outfile); The OutFile parameter specifies the name of the pdf output file. Once the document id is created, you would use the PdcStartPage and PdcEndPage functions to create each page. The GUI statements to define the content of the page are included between these two function. 2. Start a new page: PageWidth=8.5*1440; // assume a letter size paper //paper size specified in twips units PageHeight=11*1440; pdf.pdcstartpage(pagewidth,pageheight) Page 7

8 3. Use the.net classes to create a metafile based Graphic object and do the page drawing on this graphics object: Metafile CreatePageMetafile() { int UnitsPerInch=300; // MetafileFrameUnit.Document - // assume metafile resolution of 300 // set the page rectangle Rectangle PageRect=new Rectangle(); PageRect.X=PageRect.Y=0; PageRect.Width=(int)(8.50*UnitsPerInch); // assume 8.5 x 11 // paper PageRect.Height=(int)(11*UnitsPerInch); IntPtr hrefdc=win32.getdc((intptr)null); Metafile mf= new Metafile(hRefDC,PageRect, MetafileFrameUnit.Document, EmfType.EmfOnly); Graphics gr = Graphics.FromImage(mf); DrawPage(gr); gr.dispose(); Win32.ReleaseDC((IntPtr)null,hRefDC); Page 8

9 return mf; } /************************************************************* DrawPage: Construct a sample page using.net Graphics methods. The metafile resolution is 300. *************************************************************** / void DrawPage(Graphics gr) { string ptext; PointF pt; // create fonts used for creating the page Font BigFont=new Font("Times New Roman", 14*300/72,FontStyle.Regular); // 14 points = 14*300/72 metafile units Font MedFont=new Font("Times New Roman", 12*300/72,FontStyle.Regular); Font MedBoldFont=new Font("Times New Roman", 12*300/72,FontStyle.Bold); Font SmallFont=new Font("Times New Roman", 10*300/72,FontStyle.Regular); // write title text ptext="s T A T E M E N T"; pt=new PointF(MetaUnit(3.25),MetaUnit(1.0)) gr.drawstring(ptext,bigfont,brushes.red,pt); Page 9

10 // Write customer name between two horizontal lines gr.drawline(pens.black,metaunit(1.35),metaunit(2.0), MetaUnit(7.20),MetaUnit(2.0)); ptext="customer Name: "; pt=new PointF(MetaUnit(1.35),MetaUnit(2.0)); gr.drawstring(ptext,medfont,brushes.blue,pt); ptext="affront Dog Collars"; pt=new PointF(MetaUnit(3.0),MetaUnit(2.0)); gr.drawstring(ptext,medboldfont,brushes.blue,pt); gr.drawline(pens.black,metaunit(1.35),metaunit(2.30), MetaUnit(7.20),MetaUnit(2.30)); // Write balance figures ptext="previous Balance: $ "; pt=new PointF(MetaUnit(4.75),MetaUnit(3.45)); gr.drawstring(ptext,medfont,brushes.black,pt); ptext="current Balance: $ "; pt=new PointF(MetaUnit(4.81),MetaUnit(3.80)); gr.drawstring(ptext,medfont,brushes.black,pt); gr.drawline(pens.black,metaunit(6.50),metaunit(4.2), MetaUnit(7.30),MetaUnit(4.2)); Page 10

11 ptext="due: $ "; pt=new PointF(MetaUnit(5.86),MetaUnit(4.20)); gr.drawstring(ptext,medboldfont,brushes.black,pt); gr.drawline(pens.black,metaunit(6.50),metaunit(4.51), MetaUnit(7.30),MetaUnit(4.51)); gr.drawline(pens.black,metaunit(6.50),metaunit(4.53), MetaUnit(7.30),MetaUnit(4.53)); gr.drawline(pens.black,metaunit(4.86),metaunit(4.86), MetaUnit(7.30),MetaUnit(4.86)); // write some page footer text gr.drawline(pens.black,metaunit(1.35),metaunit(9.7), MetaUnit(7.20),MetaUnit(9.7)); ptext="sub Systems, Inc."; pt=new PointF(MetaUnit(3.6),MetaUnit(9.7)); gr.drawstring(ptext,smallfont,brushes.green,pt); ptext="3017 Covington Place, Round Rock, TX 78681"; pt=new PointF(MetaUnit(2.50),MetaUnit(9.86)); gr.drawstring(ptext,smallfont,brushes.green,pt); // dispose the resources BigFont.Dispose(); MedFont.Dispose(); Page 11

12 MedBoldFont.Dispose(); } /********************************************************* MetaUnit: Convert inches to metafile unit. The metafile resolution is 300. ***********************************************************/ internal new int MetaUnit(double x) { return (int)(x*300); } 4. Draw the metafile generated using the code above, and end the page. pdf.pdcdrawmetafile(createpagemetafile(),300,300); pdf.pdcendpage(); The steps 2 to 4 can be repeated to create a multi-page report. 5. After the PDF generation process, end the session by calling the PdcEndDoc function. This function assembles the final document and frees up the memory used by the session. pdf.pdcenddoc() Please refer to the demo.cs file for a working source code example. Page 12

13 Control Methods These methods allow you to create a PDF file. Please set the namespace for the Pdn class before using these methods: using SubSystems.PD; Imports SubSystems.PD // C# example ' VB Example In This Chapter PdcDrawMetafile PdcEndDoc PdcEndPage PdcGetLastMessage PdcStartDoc PdcStartPage PdcResetLastMessage PdcSetFlags Page 13

14 PdcDrawMetafile Draw metafile containing the page text. bool PdcDrawMetafile(metafile, ResX, ResY) Metafile metafile; int ResX; int ResY; Metafile containing the page drawing. Metafile resolution in the x direction. Metafile resolution in the y direction. Description: This function is pass the page drawing to the PDF engine. Return Value: The function returns TRUE when successful. Page 14

15 PdcEndDoc Terminate the current document. bool PdcEndDoc() bool PdcEndDoc(out ByteData) bool PdcEndDoc(out TextData) byte[] ByteData; string TextData The byte array containing the generated PDF text The text parameter containing the generated PDF text Description: One of these methods is called after all pages are drawn to terminate the PDF creation process. Return Value: This method returns TRUE when successful. This first method writes the PDF text to the output file specified when calling the PdcStartDoc method. This second and third methods return the generated PDF using a byte array or a string output parameters. Page 15

16 PdcEndPage Terminate the current page. bool PdcEndPage() Description: This function is called after the page drawing for the current page is completed. Return Value: The function returns TRUE when successful. Page 16

17 PdcGetLastMessage Get the last message. int PdcGetLastMessage(out PdcMessage, out DebugMessage); string PdcMessage; string DebugMsg; Returns the default user message text in English Returns any debug message associated with the last message. The debug message need not be displayed to the user. Return Value: This function returns the last message generated by the editor. This value is valid only if saving of the messages is enabled by setting the pc.pflag_return_msg_id flag. This flag is set using the PdcSetFlags function. Page 17

18 PdcStartDoc Begin the PDF generation process. bool PdcStartDoct(OutFile) LPBYTE OutFile; // The name of the PDF output file. Description: This function begins PDF document creation. Return Value: This function returns True when successful. Page 18

19 PdcStartPage Start a new page. bool PdcStartPage(PageWidth, PageHeight) int PageWidth; int PageHeight; Page width in twips units (1 inch = 1440 twips). Page height in twips units. Description: This function is called to start a new page. Return Value: The function returns TRUE when successful. Page 19

20 PdcResetLastMessage Reset the last editor message. bool PdcResetLastMessage() Description: This function can be called before calling any other function to reset the last error message. Return Value: The function returns TRUE when successful. See Also PdcGetLastMessage PdcSetFlags Page 20

21 PdcSetFlags Set certain flags or retrieve the values of the flags. int PdcSetFlags(set, flags) BOOL set; int flags; TRUE to set the given flags, FALSE to reset the given flags Flags (bits) to set or reset. Currently, the following flag values are available: pc.pflag_return_msg_id pc.pflag_first_message_only Do not display the error messages. Save the error code to be later retrieved using the PdcGetLastMessage function. Display the first message. Other messages would be suppressed. Return value: This function returns the new value of all the flags. Call this function with the 'flags' parameter set to zero to retrieve flag values without modifying it. Page 21

22 Control Properties The control supports the following properties: Author Set the author name for the PDF document. CreDate Set the document creation date. The date is specified in a text string. DoCaching The converter caches the pdf data during conversion. Set this property to false if you wish the converter to directly write the data to the output file. This can be useful when generating large pdf files. InWebServer: This property should be set to True when this control is used in a web server. When this property is set to True, the control suppress the display of any dialog and message boxes. Keywords Set the keywords for the PDF document. LicenseKey Set the product license key for the product. Your license k ey is ed to you after your order is processed. ModDate Set the document modification date. The date is specified in a text string. Producer Page 22

23 Set the producer description for the PDF document. Subject Set the subject description for the PDF document. Title Set the title for the PDF document CompressText Set to true to compress the text stream in the PDF output. PdfACompliant Set to true to generate PDF-A compliant document. PdfA1bCompliant Set to true to generate PDF-A1b compliant document. PictQuality Specify the picture quality from 1 (lowest) to 5 (highest). default = 3. PermFlags Use this flag to specify the permissions granted when the PDF document is being viewed or manipulated without using the owner password. You can use one or more of the following flags using the OR operator: pc.perm_print pc.perm_copy pc.perm_mod Allow printing operation Allow copying operation Allow document modification OwnerPassword Page 23

24 Optional document owner password. When either an owner or a user password is specified, the PDF document is written out using Adobe standard encryption mechanism. An owner password in the PDF document requires a PDF editor to prompt the user for the owner password and allow PDF modification only when the supplied owner password matches the encrypted owner password found in the file. UserPassword EmbedFonts Optional user password When either an owner or a user password is specified, the PDF document is written out using Adobe standard encryption mechanism. A user password in the PDF document requires a PDF viewer to prompt the user for the user password and allow PDF display only when the supplied user password matches the encrypted user password (or owner password) found in the file. Normally the converter only embeds the fonts used for unicode characters. This flag would instruct the converter to embed all fonts. Bookmark Create bookmarks. Default = true. OpenBookmarkPane Open the bookmark pane when PDF is displayed. Default = true. Tagged Set to true to generate tagged pdf. Page 24

Software License Agreement

Software License Agreement Software License Agreement RTF to PDF Converter For.NET Version 12 2006-2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License Agreement

More information

Software License Agreement

Software License Agreement Software License Agreement DOC to PDF Converter For.NET Version 10 2008-2011 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 4380 Caldwell Palm Circle 1221 New Meister Lane, #2712 Pflugerville, TX 78660 Software

More information

Software License Agreement

Software License Agreement Software License Agreement DOC to Image Converter For.NET Version 11 2008-2019 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

Software License Agreement

Software License Agreement Software License Agreement DOC to RTF Converter For Win32/Win64 Version 10 2008-2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

Software License Agreement

Software License Agreement Software License Agreement DOC to Image Converter For Win32/64 Version 11 2008-2019 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

Software License Agreement

Software License Agreement Software License Agreement HTML to Image Converter For Win32/64 Version 10 2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

Software License Agreement

Software License Agreement Software License Agreement HTML to PDF Converter For Win32/Win64 Version 13 2006-2019 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software

More information

Software License Agreement

Software License Agreement Software License Agreement HTML - RTF Converter For.NET Version 14 2004-2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License Agreement

More information

Software License Agreement

Software License Agreement Software License Agreement HTML - RTF Converter For Win32/Win64 Version 15 2004-2019 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

Software License Agreement

Software License Agreement Software License Agreement PDF Report Generator for.net Version 5 2008-2017 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 4380 Caldwell Palm Circle Round Rock, TX 78665 512-733-2525 Software License Agreement

More information

Software License Agreement

Software License Agreement Software License Agreement RTF Code Generator for.net Version 5.0 2004-2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 4380 Caldwell Palm Circle Round Rock, TX 78665 512-733-2525 Software License Agreement

More information

Software License Agreement

Software License Agreement Software License Agreement DOC to PDF Converter Version 11 For Win32/Win64 2008-2019 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

Software License Agreement

Software License Agreement Software License Agreement RTF Code Generator Version 5.0 Win32/Win64 1998-2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 4380 Caldwell Palm Circle Round Rock, TX 78665 512-733-2525 Software License Agreement

More information

PrimoPDF. Version 4.0 User Manual. Totally Free PDF Creation because It's everbody's PDF. Brought to you by

PrimoPDF. Version 4.0 User Manual. Totally Free PDF Creation because It's everbody's PDF. Brought to you by PrimoPDF Version 4.0 User Manual Totally Free PDF Creation because It's everbody's PDF Brought to you by NOTICE TO USER: THIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS

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

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services TIBCO Spotfire Automation Services Software Release 7.9 May 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

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

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services Software Release 7.11 LTS November 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY

More information

User s Guide to Creating PDFs for the Sony Reader

User s Guide to Creating PDFs for the Sony Reader User s Guide to Creating PDFs for the Sony Reader 1 Table of Contents I. Introduction Portable Document Format PDF Creation Software Sony Reader screen dimensions and specifications Font recommendations

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

PRODUCT GUIDE. L e p i d e S o f t w a r e P r i v a t e L i m i t e d

PRODUCT GUIDE. L e p i d e S o f t w a r e P r i v a t e L i m i t e d PRODUCT GUIDE Table of Contents 1. About Kernel for PDF to Word... 4 1.1 Using this Manual... 4 1.2 Kernel for PDF to Word... 5 1.4 Who Should Use this Software?... 6 2. Getting Started... 7 2.1 Installation

More information

Site User Guide. Oracle Health Sciences InForm CRF Submit Release Part Number:E

Site User Guide. Oracle Health Sciences InForm CRF Submit Release Part Number:E Site User Guide Oracle Health Sciences InForm CRF Submit Release 4.0.2 Part Number:E79080-01 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

TIBCO Spotfire Automation Services 7.5. User s Manual

TIBCO Spotfire Automation Services 7.5. User s Manual TIBCO Spotfire Automation Services 7.5 User s Manual Revision date: 15 January 2016 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

fontseek.info outofthedark.xyz

fontseek.info outofthedark.xyz Gza Seminegra 116 pt Gza Seminegra 102 pt Blitz Script 52 pt fontseek.info outofthedark.xyz 1 OWNERSHIP OF PRODUCT AND COPYRIGHT OUT OF THE DARK Print page 1 / 2 a The digital files downloaded to your

More information

NetApp Cloud Volumes Service for AWS

NetApp Cloud Volumes Service for AWS NetApp Cloud Volumes Service for AWS AWS Account Setup Cloud Volumes Team, NetApp, Inc. March 29, 2019 Abstract This document provides instructions to set up the initial AWS environment for using the NetApp

More information

PRESENTATION BACKGROUNDS

PRESENTATION BACKGROUNDS PRESENTATION BACKGROUNDS TM COMPATIBLE WITH ALL MAJOR PRESENTATION SOFTWARE 001TJ1.JPG 002TJ1.JPG 003TJ1.JPG 004TJ1.JPG 005TJ1.JPG 006TJ1.JPG 007TJ1.JPG 008TJ1.JPG 009TJ1.JPG 010TJ1.JPG 011TJ1.JPG 012TJ1.JPG

More information

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, June 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. If you have not executed a written or electronic agreement with

More information

Installation Guide. ProView. For System Center operations Manager ProView Installation Guide. Dynamic Azure and System Center insights

Installation Guide. ProView. For System Center operations Manager ProView Installation Guide. Dynamic Azure and System Center insights ProView Dynamic Azure and System Center insights Installation Guide For System Center operations Manager 2012 Copyright The information contained in this document represents the current view of OpsLogix

More information

GPIF II Designer - Quick Start Guide

GPIF II Designer - Quick Start Guide GPIF II Designer - Quick Start Guide 1. Introduction Welcome to GPIF II Designer - a software tool to configure the processor port of EZ-USB FX3 to connect to any external device. This application generates

More information

Getting Started with Tally.Developer 9 Series A Release 3.0

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

More information

ComponentOne. Word for WinForms

ComponentOne. Word for WinForms ComponentOne Word for WinForms ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com Sales: sales@componentone.com Telephone:

More information

TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties.

TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties. TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties. The parties to these Terms of Use are you, and the owner

More information

NuXGate. Version 2.0. For WinNT/Win2000/Win XP/Win2003. Release Date 18 August User s Manual MobileXdge Inc

NuXGate. Version 2.0. For WinNT/Win2000/Win XP/Win2003. Release Date 18 August User s Manual MobileXdge Inc NuXGate Version 2.0 For WinNT/Win2000/Win XP/Win2003 Release Date 18 August 2009 User s Manual 2009 MobileXdge Inc P1 End User License Agreement (EULA) IMPORTANT-READ CAREFULLY: This MobileXdge End-User

More information

Getting Started with Tally.Developer 9

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

More information

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

User Guide Dick Eassom. All Rights Reserved

User Guide Dick Eassom. All Rights Reserved 1998-2014 Dick Eassom. All Rights Reserved Version 2014.0.0 Introduction Installation add-in for Microsoft Word 2007/2010/2013, WordmanRibbonF.dotm, provides a tool for easily laying out artwork and text

More information

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide Stellar Phoenix Password Recovery For Windows Server Version 2.0 User Guide Overview Stellar Phoenix Password Recovery For Windows Server is a powerful application that helps you reset a Windows Server

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

Getting Started (No installation necessary) Windows On Windows systems, simply double click the AntGram icon to launch the program.

Getting Started (No installation necessary) Windows On Windows systems, simply double click the AntGram icon to launch the program. AntGram (Windows) Build 1.0 (Released September 22, 2018) Laurence Anthony, Ph.D. Center for English Language Education in Science and Engineering, School of Science and Engineering, Waseda University,

More information

0WebMaker 3.0 Release Notes

0WebMaker 3.0 Release Notes 0WebMaker 3.0 Release Notes Version 3.0 WebMaker 3.0 provides a number of new features and improvements, including a simplified user interface, HTML 3.2 compatibility, and support for Casccading Style

More information

dopdf dopdf User Manual dopdf does PDF. For free. Copyright 2017 Softland

dopdf dopdf User Manual dopdf does PDF. For free. Copyright 2017 Softland does PDF. For free. User Manual User Manual for version 9 by Softland This documentation contains proprietary information of Softland. All rights reserved. No part of this documentation shall be reproduced,

More information

NuXeb. Version 2.0. For WinNT/Win2000/Win XP/Win2003. Release Date 18 September User s Manual MobileXdge Inc

NuXeb. Version 2.0. For WinNT/Win2000/Win XP/Win2003. Release Date 18 September User s Manual MobileXdge Inc NuXeb Version 2.0 For WinNT/Win2000/Win XP/Win2003 Release Date 18 September 2009 User s Manual 2009 MobileXdge Inc P1 End User License Agreement (EULA) IMPORTANT-READ CAREFULLY: This MobileXdge End-User

More information

Avast Customer & Technical Support Policy

Avast Customer & Technical Support Policy Avast Customer & Technical Support Policy PLEASE READ THE TERMS AND CONDITIONS OF THIS SUPPORT POLICY ( SUPPORT POLICY ). THIS SUPPORT POLICY IS PROVIDED BY AVAST SOFTWARE s.r.o., A COMPANY DULY ORGANIZED

More information

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide SyncFirst Standard Quick Start Guide Step-By-Step Guide How to Use This Manual This manual contains the complete documentation set for the SyncFirst system. The SyncFirst documentation set consists of

More information

FX RFID READER SERIES Embedded SDK Sample Application

FX RFID READER SERIES Embedded SDK Sample Application FX RFID READER SERIES Embedded SDK Sample Application User Guide MN000539A01 FX RFID READER SERIES EMBEDDED SDK SAMPLE APPLICATIONS USER GUIDE MN000539A01 Revision A December 2017 Copyright 2017 ZIH Corp.

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

AutoResponse Plus Version 3. RSS Module. AutoResponse Plus RSS Module User Guide. Copyright ECom24 Ltd Page 1

AutoResponse Plus Version 3. RSS Module. AutoResponse Plus RSS Module User Guide. Copyright ECom24 Ltd Page 1 AutoResponse Plus User Guide Copyright ECom24 Ltd 2000-2009 Page 1 Software License Agreement You should carefully read the following terms and conditions before using ECom24 Ltd software ( the Software

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

Automator (Standard)

Automator (Standard) Automator (Standard) DLL Users Guide Available exclusively from PC Control Ltd. www.pc-control.co.uk 2017 Copyright PC Control Ltd. Revision 1.2 Contents 1. Introduction 2. DLL Reference 3. Using the DLL

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 and Installation Manual PC-DMIS Operator Interface Version X.X

User and Installation Manual PC-DMIS Operator Interface Version X.X PC-DMIS Operator Interface Version 2.2010.X.X 2009-2012 Hexagon Metrology GmbH Germany Table of Contents 1 General information... 4 1.1 Software objectives... 4 1.2 Software requirements... 4 1.3 License

More information

Stellar Repair for Video

Stellar Repair for Video Stellar Repair for Video 1. Overview Stellar Repair for Video lets you repair corrupted or damaged video les from storage media like ash drives, memory cards, hard drives and external hard drives. Some

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

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Avaya Contact Center Express Release 4.1 XMPP Gateway

Avaya Contact Center Express Release 4.1 XMPP Gateway Avaya Contact Center Express Release 4.1 XMPP Gateway Release 4.1 January 2010 2005 to 2009 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this

More information

MFL QUICK START MANUAL

MFL QUICK START MANUAL MFL QUICK START MANUAL MFC 1780 If You Need to Call Customer Service Please complete the following information for future reference: Model: MFC1780 (Circle your model number) Serial Number:* Date of Purchase:

More information

Introduction. Installation

Introduction. Installation Introduction Installation Wordman s Art Tables add-in for Microsoft Word 2007/2010/2013/2016, WordmanRibbonT.dotm, provides a tool for easily laying out artwork in a document using floating tables, called

More information

Oracle VueLink for Documentum

Oracle VueLink for Documentum Oracle VueLink 19.3.2 for Documentum User s Manual An Integration between Documentum and AutoVue Client/Server Deployment Copyright 1998, 2012, Oracle and/or its affiliates. All rights reserved. The Programs

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

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

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

Opazity User Guide Setup, First Use & Advanced Technique

Opazity User Guide Setup, First Use & Advanced Technique Opazity User Guide Contents Introduction, T&C 1 Part 1. Installation and Setup 2 Part 2. Instructions for First Use 3 Part 3. Advanced technique: Highlighting areas of a slide at random 6 Appendix: End

More information

TERMS OF SERVICE. Maui Lash Extensions All Rights Reserved.

TERMS OF SERVICE. Maui Lash Extensions All Rights Reserved. TERMS OF SERVICE Electronic Communication: When you visit our website or send e-mails to us, you are communicating with us electronically. You consent to receive communications from us electronically.

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

Aras Innovator.NET Client Security Policy Configuration

Aras Innovator.NET Client Security Policy Configuration Aras Innovator.NET Client Security Policy Configuration Aras Innovator 9.2 Document #: 9.2.008192009 Last Modified: 4/1/2010 Aras Corporation ARAS CORPORATION Copyright 2010 Aras Corporation 300 Brickstone

More information

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

Getting Started (No installation necessary) Windows On Windows systems, simply double click the AntPConc icon to launch the program.

Getting Started (No installation necessary) Windows On Windows systems, simply double click the AntPConc icon to launch the program. AntPConc (Windows) Build 1.2.0 (Released March 25, 2017) Laurence Anthony, Ph.D. Center for English Language Education in Science and Engineering, School of Science and Engineering, Waseda University,

More information

TI-89/TI-92 Plus/Voyage 200 Organizer Suite

TI-89/TI-92 Plus/Voyage 200 Organizer Suite TI TI-89/TI-92 Plus/Voyage 200 Organizer Suite Getting Started Introducing Organizer Start and Quit Organizer How To Use the Calendar Work With Events Work With Tasks More Information Install Apps Delete

More information

Informatik Reformat. Version User Guide. 02 November 2015

Informatik Reformat. Version User Guide. 02 November 2015 Informatik Reformat Version 15.11 User Guide 02 November 2015 Latest versions of the user guide and the program can be downloaded from www.informatik.com/manuals.html 1 Contents Introduction... 3 Trial

More information

Online Localization Service

Online Localization Service DEVELOPER EXPRESS INC DEVEXPRESS Copyright (C) 2011-2017 Developer Express Inc. IMPORTANT- READ CAREFULLY: This DEVELOPER EXPRESS INC ("DEVEXPRESS") End-User License Agreement ("EULA") is a legal agreement

More information

PDI CRM Setup PDI Spirit

PDI CRM Setup PDI Spirit PDI CRM Setup PDI CRM Setup All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or

More information

VENUS_ Driving Board and 39.6 Prism Display

VENUS_ Driving Board and 39.6 Prism Display VENUS_ Driving Board and 39.6 Prism Display Table of Contents 1 Hardware Requirements... 1 (1) PACKAGE CONTENTS... 1 (2) VENUS Specification... 2 (3) Prism product Specification... 3 2 Hardware Guide...

More information

Service Disclaimer This manual was written for use with the Modulus StockChart CE software. This manual and the product described in it are

Service Disclaimer This manual was written for use with the Modulus StockChart CE software. This manual and the product described in it are Service Disclaimer This manual was written for use with the Modulus StockChart CE software. This manual and the product described in it are copyrighted, with all rights reserved. This manual and the product

More information

Software License Agreement

Software License Agreement Software License Agreement ReportEase Plus Version 8.0 1995-2017 Copyright (c) 1992-2015, Sub Systems, Inc. All Rights Reserved 4380 Caldwell Plam Cir Round Rock, TX 78665 512-733-2525 Software License

More information

Amyuni PDF Converter. User s Manual Updated September 26, 2005

Amyuni PDF Converter. User s Manual Updated September 26, 2005 Amyuni PDF Converter Version 2.50e Version 2.50e Professional For Windows 95, 98, Me, NT4, 2000, XP/2003 32-bits, XP/2003 64-bits User s Manual Updated September 26, 2005 Amyuni Consultants Amyuni Technologies

More information

OfficeServ Link User Manual

OfficeServ Link User Manual OfficeServ Link User Manual Every effort has been made to eliminate errors and ambiguities in the information contained in this guide. Any questions concerning information presented here should be directed

More information

Oracle User Productivity Kit Content Player

Oracle User Productivity Kit Content Player Oracle User Productivity Kit Content Player Oracle User Productivity Kit Content Player Copyright 1998, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks

More information

Gift, Loyalty, and Tracking Program Web Portal Operating Manual

Gift, Loyalty, and Tracking Program Web Portal Operating Manual Gift, Loyalty, and Tracking Program Web Portal Operating Manual (11/17) Need help? Web: moneris.com/support Toll-free: 1-866-319-7450 Record your Moneris merchant ID here: Contents Welcome to the Moneris

More information

IndoTraq Development Kit 1: Command Reference

IndoTraq Development Kit 1: Command Reference IndoTraq Development Kit 1: Command Reference April 2016 Page 1 of 9 Copyright 2016, IndoTraq LLC DK1 Command Reference v1.0 Contents 1 Introduction... 3 1.1 Writing Conventions... 3 2 Basics... 3 2.1

More information

Scan to Digitech v1.0

Scan to Digitech v1.0 Scan to Digitech v1.0 Administrator's Guide June 2009 www.lexmark.com Lexmark and Lexmark with diamond design are trademarks of Lexmark International, Inc., registered in the United States and/or other

More information

CA Output Management Web Viewer

CA Output Management Web Viewer CA Output Management Web Viewer User Guide Release 12.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Version 9. Link the following Act! software: Act! Pro & Premium v15-v19 (referred to as Act! in this guide)

Version 9. Link the following Act! software: Act! Pro & Premium v15-v19 (referred to as Act! in this guide) Version 9 Link the following Act! software: Act! Pro & Premium v15-v19 (referred to as Act! in this guide) to the following MYOB software: MYOB AccountRight 2014-2016 MYOB AccountRight Live 2014-2016 (referred

More information

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS Introduction This document sets forth the terms and conditions ("Terms and Conditions") governing your use of the MeridianHealth.com Web site ("Web Site")

More information

TOOLS for n Version2 Update Guide

TOOLS for n Version2 Update Guide TOOLS for n Version2 Update Guide SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE THIS SOFTWARE

More information

vippaq Main App. User Guide

vippaq Main App. User Guide vippaq Main App. User Guide Edition 1d July 2008 Contents 1 INTRODUCTION 3 1.1 3 2 SYSTEM PREPARATION 4 2.1.1 Measuring Head Connection 5 2.1.2 Position the Measuring Heads 5 2.1.3 Start Job 5 3 MEASURE

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

Avaya Contact Center Express Release 5.0 XMPP Gateway

Avaya Contact Center Express Release 5.0 XMPP Gateway Avaya Contact Center Express Release 5.0 XMPP Gateway Release 5.0 August 2010 2005 to 2010 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this

More information

Spectrum. Spectrum-Specific Setup User Guide for Minisoft eformz Support. November 2015/1.0

Spectrum. Spectrum-Specific Setup User Guide for Minisoft eformz Support. November 2015/1.0 Spectrum-Specific Setup User Guide for Minisoft eformz Support 2015-2016, Inc. or its affiliates. All rights reserved. This work is confidential and its use is strictly limited. Use is permitted only in

More information

SequencePro Data Analysis Application. User Guide

SequencePro Data Analysis Application. User Guide SequencePro Data Analysis Application User Guide SequencePro Data Analysis Application User Guide DRAFT October 31, 2001 12:52 pm, Title_page.fm Copyright 2001, Applied Biosystems. All rights reserved.

More information

x10data Application Platform v7.1 Installation Guide

x10data Application Platform v7.1 Installation Guide Copyright Copyright 2010 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the

More information

SD1306. Speed Dome IP Camera. Quick User Guide

SD1306. Speed Dome IP Camera. Quick User Guide SD1306 Speed Dome IP Camera Quick User Guide Table of Contents I. Camera Introduction... 1 1. Package Contents... 1 2. Hardware Installation... 2 2.1 Factory Default... 6 3. SD card Compatibility List...

More information

Getting Started (No installation necessary)

Getting Started (No installation necessary) ProtAnt (Windows) Build 1.2.1 (Released March 21, 2017) Laurence Anthony, Ph.D. Center for English Language Education in Science and Engineering, School of Science and Engineering, Waseda University, 3-4-1

More information

Getting Started with Tally.Developer 9 Alpha

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

More information

System Administrators Guide

System Administrators Guide System Administrators Guide Standalone Version Freezerworks Unlimited Version 6.0 PO Box 174 Mountlake Terrace, WA 98043 www.freezerworks.com support@freezerworks.com 425-673-1974 877-289-7960 U.S. Toll

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

Version 7 & 8. Note for users of MYOB AccountRight Live : Please use version 9 of Act! Link for MYOB instead USER GUIDE

Version 7 & 8. Note for users of MYOB AccountRight Live : Please use version 9 of Act! Link for MYOB instead USER GUIDE Version 7 & 8 Link the following Act! software: Act! & Act! Pro 2008-2017 (v10.2-19.0) Act! Premium 2008-2017 (v10.2-19.0) (referred to as Act! in this guide) to the following MYOB software: MYOB AccountRight

More information

ZL UA Exchange 2013 Archiving Configuration Guide

ZL UA Exchange 2013 Archiving Configuration Guide ZL UA Exchange 2013 Archiving Configuration Guide Version 8.0 January 2014 ZL Technologies, Inc. Copyright 2014 ZL Technologies, Inc.All rights reserved ZL Technologies, Inc. ( ZLTI, formerly known as

More information

ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts

ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts ssj1708 Protocol Stack License READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE OPENING

More information

Window Workspace Quick customize

Window Workspace Quick customize With the Welcome Screen, you can quickly start or open a document, choose a workspace that suits your needs, access online learning videos and other learning resources, and get inspired by a gallery of

More information

Avaya Converged Platform 130 Series. idrac9 Best Practices

Avaya Converged Platform 130 Series. idrac9 Best Practices Avaya Converged Platform 130 Series idrac9 Best Practices Release 4.0 December 2018 2018 Avaya Inc. All Rights Reserved Notice While reasonable efforts were made to ensure that the information in this

More information