LIBICONV An Interface to Team Developer. By Jean-Marc Gemperle Technical Support Engineer

Size: px
Start display at page:

Download "LIBICONV An Interface to Team Developer. By Jean-Marc Gemperle Technical Support Engineer"

Transcription

1 LIBICONV An Interface to Team Developer By Jean-Marc Gemperle Technical Support Engineer November, 2005

2 Abstract... 3 Introduction... 3 What Is LIBICONV?... 4 Obtaining and Building LIBICONV for Win A DLL Interface to Team Developer... 4 Team Developer ICONV Samples and Tests... 5 A Brief Description of the Application... 6 Converting a Hebrew Code Page CP1255 to the UTF-8 Format... 7 Converting the Generated UTF-8 Back to the CP1255 Hebrew Code Page... 8 Chinese ISO-2022-CN-EXT to UTF ISO to DOS ISO to WINDOWS-1250 Cannot Convert ISO88591 to WINDOWS-1250 Using Translit Conclusions... 12

3 Abstract This technical white paper proposes an interface from GUPTA Team Developer to the GNU LIBICONV allowing a Team Developer programmer to convert their documents to a different form of encoding. See Introduction Introduction Generally, international text is encoded using a specific countrydependent character encoding. With the Internet, conversion between different encoding has become critical. Conversion is also a problem because some characters which are present in one encoding may not be in another. For all these reasons Unicode as been created as the superencoding standard over all others and is the default for new text formats such as XML. See Page 3

4 About LIBICONV and Team Developer What Is LIBICONV? Many computers still use traditional character encoding. This is also the case for applications built using Team Developer. Team Developer 2006 will be fully Unicode enables. However, some applications must be able to convert from one encoding to another. In Team Developer for example, you may generate XML files using either XML Table Windows, the DOM class Library, or Serialization of UDV, and you may want to transfer the documents to other applications using other encodings. GNU LIBICONV is a conversion library to convert from Unicode to traditional encoding and vice versa. So LIBICONV is a solution for you if you need your applications to support multiple character encodings and is lacking in your current system. See for details on supported encodings. How to obtain & build LIBICONV for Windows Obtaining and Building LIBICONV for Win32 You can download the LIBICONV source files from To build LIBICONV you will need to have Microsoft Visual Studio 6 and both the libiconv-win32 and gettext-win32 sources. First you will need to build LIBICONV without NLS, then GETTEXT and LIBICONV. Carefully follow the README.woe32 from these packages. By following these steps you should be able to get the WIN32 binary of the main application ICONV.EXE along with its dependencies ICONV.DLL, INTL.DLL, etc. Whether or not you decide to compile or directly use the binary package provided, you can easily interface ICONV.EXE to Team Developer using SalLoadApp(). Simply invoke ICONV.EXE help for the description of the parameters. The LIBICONV DLL wrapper A DLL Interface to Team Developer This document provides a simple interface to GUPTA Team Developer. The Dynamic Link Library (DLL) file LIBICONVDLL.dll is a wrapper to the ICONV main() entry point. See the Visual Studio projects LIBICONVDLL.dsw and td_iconv.c. The wrapper exports 3 functions to Team Developer: bok= iconv (BOOL bbinary, BOOL btranslit, sfromcode,sfromfile, stocode, stofile) Page 4 Parameters bbinary : Open the sfromfile in BINARY mode btranslit : Limited support for transliteration, i.e. when a character cannot be represented in the target character set, it can be approximated through one or several similarly looking characters. sfromcode: The coding of the document source sfromfile: The source file to convert stocode: The target coding stofile: The target file

5 Return Ok is TRUE if the function succeeds and FALSE if it fails. iconvlistenc(slistofcode) Parameter slistofcode: Return list of supported coding. iconvlasterror(slasterror) Parameter slasterror: If iconv fails, get error description with this function. The interface only provides conversion from a source file to a target file and does not yet provide the capability of converting directly a buffer in memory; although all the logic is available in the convert() function of ICONV.C source. Samples and tests Team Developer ICONV Samples and Tests In order to perform some interesting tests using Team Developer interface to iconv, install the Supplemental language support from the Languages tab in the Regional and Language Options control panel and select a Unicode font in the Notepad as shown below for XP: Page 5 You can also test using Windows 2000 as long as you install the needed language in the Control Panel s Regional option.

6 A Brief Description of the Application The Team Developer application that interfaces to LIBICONV can be found in \libiconv\bin\test_iconv.apt and the sample file in \libiconv\bin\samples. With it you can type in the file you want to convert or, by using the... button, you can open a File dialog and then open some of the samples provided in the samples directory where different file types are supported, for instance *.TXT, UTF-8 and XML. Here we will open the HEBREW-CP1255.TXT file. This file uses the traditional encoding CP1255 and our goal is to convert it to UTF-8. By default the application chooses an ISO code page both for the source and the target as soon as you select an existing file. Note that the combo boxes are Type Ahead combo. The list of encoding returned in the combo is an encoding type that ICONV supports. Also note that all these encodings are not specific, but that some are aliases to others (i.e. 437 is equivalent to CP437). The Notepad button allows us to view the source file in Notepad while the DOS button will open a command prompt allowing you to type the filename. The same button exists to check the differences after converting both in Windows and DOS. The Del button simply deletes the file that was generated. The Binary check box opens the file in binary mode and the Translit button is for transliteration, i.e. when a character cannot be represented in the target character set it can be approximated through one or several similar looking characters. Page 6

7 Converting a Hebrew Code Page CP1255 to the UTF-8 Format Converting a Hebrew code page to UTF-8 Page 7 Microsoft Windows Notepad cannot properly display the file because the operating system used for this test is a United States English version and therefore does not have the Hebrew font installed. Thus, Notepad cannot properly display the CP1255 code page. Converting from CP1255 to UTF-8 will allow Notepad to properly display Hebraic character sets. Obviously DOS CP437 can not show this unless we have the right code page and right raster fonts.

8 Converting the Generated UTF-8 Back to the CP1255 Hebrew Code Page Converting the UTF-8 back to the Hebrew code page This test just shows that the resulting OUT.CP1255 file is identical to the HEBREW-CP1255.TXT from our previous test. Page 8 Page 6

9 Chinese ISO-2022-CN-EXT to UTF-8 Chinese IS CN-EXT to UTF-8 This is the same test as above but with a different code page. The C:\libiconv\bin\Samples directory contains other samples such as Japanese snippets. Also, when you obtain the source of libiconv-win32 you will have additional test samples to verify that ICONV is functional. Page 9

10 ISO to DOS 437 ISO to DOS 437 Page 10 This test converts a WINDOWS ANSI code page ISO to the code page 437. The command prompt on the input file shows garbage as DOS can t display ISO , but can using CP437. Once converted, Windows Notepad can not display the CP437 code page.

11 ISO to WINDOWS-1250 Cannot Convert ISO to WINDOWS-1250 cannot convert This test shows that some characters from ISO can t be converted to the WINDOWS-1250 code page. ISO88591 to WINDOWS-1250 using translit ISO88591 to WINDOWS-1250 Using Translit Page 11 The Translit option tries to approximate the character that could not be represented in the target code page.

12 Conclusions Conclusions This whitepaper covered the ability to convert applications from one character encoding format to another in Team Developer using GNU LIBICONV. All the work being done by the ICONV interface to Team Developer can simply be done using a call to ICONV.EXE. The DLL interface proposed here is only a sample and is given without any guarantee. There are many other useful GNU tools that could be used in Team Developer. There is no real need to rebuild the tools, and either a port on WIN32 can be found as is the case with LIBICONV, or one could use CYGWIN found at: and its runtime to execute UNIX tools under WIN32. Page 12 Copyright 2005 Gupta Technologies LLC. GUPTA, the GUPTA logo, and all GUPTA products are licensed or registered trademarks of Gupta Technologies, LLC. All other products are trademarks or registered trademarks of their respective owners. All rights reserved.

Pre-installation Information

Pre-installation Information Release Notes GUPTA Team Developer 2005.1 Pre-installation Information New Features in Gupta Team Developer 2005.1 XML Operations UDV Serialization and Deserialization Find-and-Replace Enhancements Report

More information

Using Team Developer for XML Business Integration (A Business View) By Helmut Reimann Sales Engineering Manager

Using Team Developer for XML Business Integration (A Business View) By Helmut Reimann Sales Engineering Manager Using Team Developer for XML Business Integration (A Business View) By Helmut Reimann Sales Engineering Manager November, 2005 Abstract... 3 Introduction... 3 What Does Enterprise Application Integration

More information

Unicode and the Implications of Its Implementation

Unicode and the Implications of Its Implementation STORAGE SOLUTIONS WHITE PAPER Unicode and the Implications of Its Implementation Contents 1. Introduction...1 2. What is Unicode?...1 3. Converting to Unicode...1 3.1 Create a disaster recovery image of

More information

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Novemebr 6, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is

More information

Investintech.com Inc. Software Development Kit: PDF-to-Excel Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDF-to-Excel Function Library User s Guide Investintech.com Inc. Software Development Kit: PDF-to-Excel Function Library User s Guide May 25, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is registered

More information

Investintech.com Inc. Software Development Kit: PDFtoXML Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDFtoXML Function Library User s Guide Investintech.com Inc. Software Development Kit: PDFtoXML Function Library User s Guide January 15, 2007 http://www.investintech.com Copyright 2008 Investintech.com, Inc. All rights reserved Adobe is registered

More information

Cindex 3.0 for Windows. Release Notes

Cindex 3.0 for Windows. Release Notes Cindex 3.0 for Windows Release Notes The information contained in this document is subject to change without notice, and does not represent a commitment on the part of Indexing Research. The program described

More information

Code Page Configuration in PowerCenter

Code Page Configuration in PowerCenter Code Page Configuration in PowerCenter 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

OpenText Gupta TD Mobile Release Notes

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

More information

Can R Speak Your Language?

Can R Speak Your Language? Languages Can R Speak Your Language? Brian D. Ripley Professor of Applied Statistics University of Oxford ripley@stats.ox.ac.uk http://www.stats.ox.ac.uk/ ripley The lingua franca of computing is (American)

More information

Attacking Internationalized Software

Attacking Internationalized Software Scott Stender scott@isecpartners.com Black Hat August 2, 2006 Information Security Partners, LLC isecpartners.com Introduction Background Internationalization Basics Platform Support The Internationalization

More information

SIEMENS APPLICATION NOTES. Running APT under WinNT or Win2000. Date : March 1999 (Updated Aug 2000) Release # 1.9. APPnote# 179

SIEMENS APPLICATION NOTES. Running APT under WinNT or Win2000. Date : March 1999 (Updated Aug 2000) Release # 1.9. APPnote# 179 SIEMENS APPLICATION NOTES Product: Topic: SIMATIC APT Running APT under WinNT or Win2000 Date : March 1999 (Updated Aug 2000) Release # 1.9 APPnote# 179 i PREFACE Application notes are intended to explain

More information

How to configure the Matlab interface

How to configure the Matlab interface How to configure the Matlab interface 1. MATLAB must be installed For step 2 (required for MATLAB versions 2009b and over), we need to know whether the 32-bit or 64-bit version of MATLAB is installed.

More information

Service Optimization Version 8.1. Service Optimization Localization Guide

Service Optimization Version 8.1. Service Optimization Localization Guide Service Optimization Version 8.1 Service Optimization Localization Guide Legal Notice The software with this guide is furnished under a license agreement and may be used only according to the terms of

More information

Saving Report Output to the Server File System

Saving Report Output to the Server File System Guideline Saving Report Output to the Server File System Product(s): IBM Cognos 8 BI Area of Interest: Infrastructure Saving Report Output to the Server File System 2 Copyright and Trademarks Licensed

More information

FLICONV-API. Generated by Doxygen

FLICONV-API. Generated by Doxygen FLICONV-API 1 1.8.13 Contents 1 FLUC ICONV Interface 1 1.1 CCSID's, encoding strings and defines................................ 1 1.2 Compatibility mode.......................................... 2 1.3

More information

Investintech.com Inc. Software Development Kit: ImagetoPDF Function Library User s Guide

Investintech.com Inc. Software Development Kit: ImagetoPDF Function Library User s Guide Investintech.com Inc. Software Development Kit: ImagetoPDF Function Library User s Guide December 31, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is

More information

SDL MultiTerm 2011 Release Notes

SDL MultiTerm 2011 Release Notes SDL MultiTerm 2011 Release Notes SDL MultiTerm 2011 Release Notes Page 1 SDL MultiTerm 2011 Release Notes Copyright 2000-2011 SDL plc. All rights reserved. Unless explicitly stated otherwise, all intellectual

More information

Technical Brief Exporting a List of Device MAC Addresses from Xcalibur Global Document Version 1.0

Technical Brief Exporting a List of Device MAC Addresses from Xcalibur Global Document Version 1.0 Technical Brief Exporting a List of Device MAC Addresses from Xcalibur Global Document Version 1.0 August 2006 2006 Chip PC (UK) Ltd., Chip PC (Israel) Ltd. All rights reserved. The information contained

More information

Attacking Internationalized Software

Attacking Internationalized Software Scott Stender scott@isecpartners.com Black Hat August 2, 2006 Information Security Partners, LLC isecpartners.com Introduction Who are you? Founding Partner of Information Security Partners, LLC (isec

More information

IDEA 3.4 Upgrade Instructions

IDEA 3.4 Upgrade Instructions Purpose: Procedure to upgrade an existing IDEA installation to IDEA 3.4. Overview: The upgrade procedure consists of uninstalling any previous version of IDEA and drivers. Then installing the new IDEA

More information

CSV Import Guide. Public FINAL V

CSV Import Guide. Public FINAL V CSV Import Guide FINAL V1.1 2018-03-01 This short guide demonstrates how to prepare and open a CSV data file using a spreadsheet application such as Excel. It does not cover all possible ways to open files.

More information

Table of Contents. Introduction What is the monologue Sound Librarian?... 2 Caution... 2 Operating requirements Installation...

Table of Contents. Introduction What is the monologue Sound Librarian?... 2 Caution... 2 Operating requirements Installation... E 2 Table of Contents Introduction... 2 What is the monologue Sound Librarian?... 2 Caution... 2 Operating requirements... 2 Installation... 3 Installation for Mac users... 3 Installation for Windows users...

More information

Data Converter. For 8 Series Mobile Computers. Version 3.02

Data Converter. For 8 Series Mobile Computers. Version 3.02 Data Converter For 8 Series Mobile Computers Version 3.02 Copyright 2010~2014 CIPHERLAB CO., LTD. All rights reserved The software contains proprietary information of CIPHERLAB CO., LTD.; it is provided

More information

Staff User s Guide Task Manager. Version 22

Staff User s Guide Task Manager. Version 22 Staff User s Guide Task Manager Version 22 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or abuse will result in economic loss. DO NOT

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

Bookmarks for PDF Output(Outline-Group)

Bookmarks for PDF Output(Outline-Group) Bookmarks for PDF Output(Outline-Group) The axf:outline-group groups bookmark items of PDF, and outputs them collectively. Value: Initial: empty string Applies to: block-level formatting objects

More information

Building epics on win32-x86

Building epics on win32-x86 Building epics 3.14.8.2 on win32-x86 J. Sebek November 8, 2007 Abstract I document the steps I used to build epics 3.14.8.2 on the win32-x86 platform using the standard tools for the WinXP platform. 1

More information

Migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises) Applies to: Microsoft Dynamics CRM Online 2015 Update 1

Migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises) Applies to: Microsoft Dynamics CRM Online 2015 Update 1 Migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises) Applies to: Microsoft Dynamics CRM Online 2015 Update 1 This document is provided "as-is". Information and views expressed

More information

Installing Geant4 v9.5 for Windows

Installing Geant4 v9.5 for Windows Installing Geant4 v9.5 for Windows A step-by-step guide for Windows XP/Vista/7 using cmake and Visual C++ 2009 / 2010 Daniel Brandt 6 April 2012 0. Introduction and Requirements This document provides

More information

Importing Flat File Sources in Test Data Management

Importing Flat File Sources in Test Data Management Importing Flat File Sources in Test Data Management Copyright Informatica LLC 2017. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the United States

More information

Localizing Intellicus. Version: 7.3

Localizing Intellicus. Version: 7.3 Localizing Intellicus Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

DOWNLOAD OR READ : UNICODE CONVERT CHAR INTO ANSICHAR OR WIDECHAR DELPHI PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : UNICODE CONVERT CHAR INTO ANSICHAR OR WIDECHAR DELPHI PDF EBOOK EPUB MOBI DOWNLOAD OR READ : UNICODE CONVERT CHAR INTO ANSICHAR OR WIDECHAR DELPHI PDF EBOOK EPUB MOBI Page 1 Page 2 unicode convert char into ansichar or widechar delphi unicode convert char into pdf unicode convert

More information

Office Adapters for Quark Publishing Platform

Office Adapters for Quark Publishing Platform Office Adapters for Quark Publishing Platform Contents Getting started... 1 About Quark Publishing Platform...1 System requirements... 3 Installing the Office Adapters for Quark Publishing Platform...

More information

Investintech.com Inc. Software Development Kit: PDF-to-HTML Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDF-to-HTML Function Library User s Guide Investintech.com Inc. Software Development Kit: PDF-to-HTML Function Library User s Guide July 13, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is registered

More information

Complete SDK Functionality List. Functions available in AnNakel SDK. 1 -Set Options:

Complete SDK Functionality List. Functions available in AnNakel SDK. 1 -Set Options: A Translation Services and Software Company Complete SDK Functionality List Functions available in AnNakel SDK 1 -Set Options: bool SetTransliterationEa(int ioption); ioption = EA_OPTION_NO_TRANSLIT No

More information

Configuring a Sybase PowerDesigner Resource in Metadata Manager 9.0

Configuring a Sybase PowerDesigner Resource in Metadata Manager 9.0 Configuring a Sybase PowerDesigner Resource in Metadata Manager 9.0 2010 Informatica Abstract This article shows how to create and configure a Sybase PowerDesigner resource in Metadata Manager 9.0 to extract

More information

SDL MultiTerm 2011 SP2 Release Notes

SDL MultiTerm 2011 SP2 Release Notes SDL MultiTerm 2011 SP2 Release Notes SDL MultiTerm 2011 SP2 Release Notes Page 1 SDL MultiTerm 2011 SP2 Release Notes Copyright 2000-2012 SDL plc. All rights reserved. Unless explicitly stated otherwise,

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

Formatting Support: Word 2008

Formatting Support: Word 2008 Guidelines for Preparing Electronic Theses, Dissertations, and Doctoral Essays This document contains instructions for formatting conformant Portable Document Format (PDF) versions of theses to our database.

More information

Supplement B. Creating, Compiling and Running Java Programs from the Command Window

Supplement B. Creating, Compiling and Running Java Programs from the Command Window Supplement B Creating, Compiling and Running Java Programs from the Command Window For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Opening a Command

More information

ECOM 2325 Computer Organization and Assembly Language. Instructor: Ruba A.Salamah INTRODUCTION

ECOM 2325 Computer Organization and Assembly Language. Instructor: Ruba A.Salamah INTRODUCTION ECOM 2325 Computer Organization and Assembly Language Instructor: Ruba A.Salamah INTRODUCTION Overview Welcome to ECOM 2325 Assembly-, Machine-, and High-Level Languages Assembly Language Programming Tools

More information

Ascent 6.1 Release Script for FileNet Content Manager 3.0. Release Notes

Ascent 6.1 Release Script for FileNet Content Manager 3.0. Release Notes Ascent 6.1 Release Script for FileNet Content Manager 3.0 Release Notes 10001303-000 Revision A November 16, 2004 Copyright Copyright 2004 Kofax Image Products, Inc. All Rights Reserved. Printed in USA.

More information

Installation Notes for Enhydra Director Netscape/IPlanet Web Servers

Installation Notes for Enhydra Director Netscape/IPlanet Web Servers Installation Notes for Enhydra Director Netscape/IPlanet Web Servers Installation Notes for Enhydra Director Netscape/IPlanet Web Servers Table of Contents 1.Introduction...1 2. System Requirements...2

More information

These two items are all you'll need to write your first application reading instructions in English.

These two items are all you'll need to write your first application reading instructions in English. IFRN Instituto Federal de Educação, Ciência e Tecnologia do RN Curso de Tecnologia em Análise e Desenvolvimento de Sistemas Disciplina: Inglês Técnico Professor: Sandro Luis de Sousa Aluno(a) Turma: Data:

More information

CHANGING IP ADDRESS OF PERSYSTENT SERVER

CHANGING IP ADDRESS OF PERSYSTENT SERVER CHANGING IP ADDRESS OF PERSYSTENT SERVER Overview It is important to have a static IP Address for Persystent Server. Change may require manual intervention to update the IP address for Persystent Server

More information

SilkTest 2010 R2. Installation Guide

SilkTest 2010 R2. Installation Guide SilkTest 2010 R2 Installation Guide Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2009-2010 Micro Focus (IP) Limited. All Rights Reserved. SilkTest contains

More information

Getting Started with Multilizer Day Evaluation

Getting Started with Multilizer Day Evaluation Getting Started with Multilizer Evaluation 1 Getting Started with Multilizer 2011 30-Day Evaluation Multilizer 2011 Getting Started with Multilizer 2011 30-Day Evaluation Updated January 2011 Copyright

More information

Defender Desktop Login GrIDsure Token User Guide

Defender Desktop Login GrIDsure Token User Guide Desktop Login GrIDsure Token User Guide Introduction This guide describes what the user will see when using Desktop Login with GrIDsure tokens. The logon procedure will vary slightly depending on the platform

More information

Nimsoft Monitor Server

Nimsoft Monitor Server Nimsoft Monitor Server Configuration Guide v6.00 Document Revision History Version Date Changes 1.0 10/20/2011 Initial version of Nimsoft Server Configuration Guide, containing configuration and usage

More information

Rocket UniVerse. GCI Guide. Version November 2013 UNV-112-GCI-1

Rocket UniVerse. GCI Guide. Version November 2013 UNV-112-GCI-1 Rocket UniVerse GCI Guide Version 11.2 November 2013 UNV-112-GCI-1 Notices Edition Publication date: November 2013 Book number: UNV-112-GCI-1 Product version: Rocket UniVerse V11.2 2 Copyright Rocket Software,

More information

Urdu Hindi Transliteration System Help Document V1.2 URL:

Urdu Hindi Transliteration System Help Document V1.2 URL: System Requirements: http://uh.learnpunjabi.org Urdu Hindi Transliteration System Help Document V1.2 URL: http://uh.learnpunjabi.org/ Browser : Internet Explorer 6 or Higher Unicode Font : GIST_UROTNabeel;

More information

Team Developer and.net

Team Developer and.net Team Developer and.net Unify Corporation Table of Contents Abstract...3 PART I - Consuming Team Developer Code from VB.NET...6 PART II - Consuming a VB.NET Assembly from Team Developer...8 Conclusion...11

More information

Oracle Fusion Configurator

Oracle Fusion Configurator Oracle Fusion Configurator Configurator Modeling Walk Through O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Table of Contents Introduction 1 Assumptions 1 Product Information Management Setup 2 Item

More information

IT101. Characters: from ASCII to Unicode

IT101. Characters: from ASCII to Unicode IT101 Characters: from ASCII to Unicode Java Primitives Note the char (character) primitive. How does it represent the alphabet letters? What is the difference between char and String? Does a String consist

More information

1 Review Information About this Guide

1 Review Information About this Guide Oracle Database Client Quick Installation Guide 11g Release 2 (11.2) for Microsoft Windows x64 (64-Bit) E24284-02 January 2012 This guide describes how to quickly install the Oracle Database Client product

More information

3B2 Word. User Manual

3B2 Word. User Manual 3B2 Word User Manual Contents 1 ± Introduction... 3 2 ± Using 3B2 Word... 4 2.1 ± Converting a single document.... 4 2.2 ± Converting multiple documents... 5 3 ± Configuring 3B2 Word... 6 3.1 ± ``Configuration

More information

Solution Explorer Copy Items in a Solution Files That Manage Solutions and Projects Solutions (SQL Server Management Studio) Associate a Query with a

Solution Explorer Copy Items in a Solution Files That Manage Solutions and Projects Solutions (SQL Server Management Studio) Associate a Query with a Table of Contents Copy Items in a Solution Files That Manage Solutions and Projects Solutions (SQL Server Management Studio) Associate a Query with a Connection in a Project Projects (SQL Server Management

More information

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Application Note 182 Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Introduction This document discusses using LabWindows/CVI to interface with RT Series hardware and to write DLLs to

More information

How to build Simbody 2.2 from source on Windows

How to build Simbody 2.2 from source on Windows How to build Simbody 2.2 from source on Windows Michael Sherman, 30 Mar 2011 (minor revision 27 July 2011) Simbody 2.2 was re-engineered to be much easier to build from source than previous releases. One

More information

OS/400 Runtime Component

OS/400 Runtime Component OS/400 Runtime Component Release 8.1.3 November 2013 IKAN Solutions N.V. Schaliënhoevedreef 20A B-2800 Mechelen BELGIUM Copyright 2013, IKAN Solutions N.V. No part of this document may be reproduced or

More information

Oracle. Sales Cloud Understanding Import and Export Management. Release 13 (update 18B)

Oracle. Sales Cloud Understanding Import and Export Management. Release 13 (update 18B) Oracle Sales Cloud Understing Import Export Management Release 13 (update 18B) Release 13 (update 18B) Part Number E94712-02 Copyright 2011-2018, Oracle /or its affiliates. All rights reserved. Authors:

More information

Understanding Unicode

Understanding Unicode Understanding Unicode in Sage SalesLogix Version 8.0 Developed by Sage SalesLogix User Assistance Copyright 1997-2012, Sage Software, Inc. All Rights Reserved. This product and related documentation are

More information

Halcyon Spooled File Manager GUI. v8.0 User Guide

Halcyon Spooled File Manager GUI. v8.0 User Guide Halcyon Spooled File Manager GUI v8.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400,

More information

OpenText RightFax 10.5 Connector for Microsoft SharePoint 2010 Administrator Guide

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

More information

Technical Whitepaper. NetBackup PureDisk Technical Product Management. PureDisk Remote Office Protection. Export to NetBackup Feature

Technical Whitepaper. NetBackup PureDisk Technical Product Management. PureDisk Remote Office Protection. Export to NetBackup Feature Technical Whitepaper NetBackup PureDisk Technical Product Management PureDisk Remote Office Protection Export to NetBackup Feature 09 May 2007 Document Information Copyright The copyright to this document

More information

PC and Windows Installation 32 and 64 bit Operating Systems

PC and Windows Installation 32 and 64 bit Operating Systems SUDAAN Installation Guide PC and Windows Installation 32 and 64 bit Operating Systems Release 11.0.1 Copyright 2013 by RTI International P.O. Box 12194 Research Triangle Park, NC 27709 All rights reserved.

More information

Workstation Configuration Guide

Workstation Configuration Guide Workstation Configuration Guide August 13, 2018 Version 9.6.134.78 For the most recent version of this document, visit our documentation website. Table of Contents 1 Workstation configuration 4 1.1 Considerations

More information

Compliance Guardian Online 2. Release Notes

Compliance Guardian Online 2. Release Notes Compliance Guardian Online 2 Release Notes Issued July 2016 New Features and Improvements Added a guidance window for first time Compliance Guardian Online users. Users can now create a real-time scanner

More information

Jdrview User Manual. Version. Nicola L.C. Talbot 18 th March, 2017 PGF. \parshape. \shapepar.

Jdrview User Manual. Version. Nicola L.C. Talbot   18 th March, 2017 PGF. \parshape. \shapepar. Jdrview User Manual Version Nicola L.C. Talbot http://www.dickmaw-books.com/ 18 th March, 2017 PGF \parshape \shapepar flowframe Java and all Java-based marks are trademarks or registered trademarks of

More information

TECkit version 2.0 A Text Encoding Conversion toolkit

TECkit version 2.0 A Text Encoding Conversion toolkit TECkit version 2.0 A Text Encoding Conversion toolkit Jonathan Kew SIL Non-Roman Script Initiative (NRSI) Abstract TECkit is a toolkit for encoding conversions. It offers a simple format for describing

More information

OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide

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

More information

WRITING CONSOLE APPLICATIONS IN C

WRITING CONSOLE APPLICATIONS IN C WRITING CONSOLE APPLICATIONS IN C with Visual Studio 2017 A brief step-by-step primer for ME30 Bryan Burlingame, San José State University The Visual Studio 2017 Community Edition is a free integrated

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

Application Note 112

Application Note 112 Application Note 112 Using RealView Compilation Tools from Visual Studio Document number: Issued: September 2004 Copyright ARM Limited 2004 Copyright 2004 ARM Limited. All rights reserved. Application

More information

Configuring Informix Linux Client for Connectivity from Team Developer By Ana Paula Bonani Technical Support Engineer

Configuring Informix Linux Client for Connectivity from Team Developer By Ana Paula Bonani Technical Support Engineer Configuring Informix Linux Client for Connectivity from Team Developer 2005.1 By Ana Paula Bonani Technical Support Engineer November, 2005 Abstract... 3 Introduction... 3 Configuring unixodbc... 4 Configuring

More information

PrinterOn On-Premise Server Release Technical Support Notes

PrinterOn On-Premise Server Release Technical Support Notes PrinterOn On-Premise Server Release Technical Support Notes Security Note PrinterOn strongly recommends using certificate signed by a trusted Certificate Authority (CA) with your PrinterOn service. Self-signed

More information

How to do data entry in HDPOS smart in Marathi language?

How to do data entry in HDPOS smart in Marathi language? How to do data entry in HDPOS smart in Marathi language? HDPOS smart is a very versatile application. We understand the need of our customers to have item names in a language familiar to them and hence

More information

Application Notes for Beijing InfoQuick SinoVoice Speech Technology (SinoVoice) jtts with Avaya Voice Portal Issue 1.0

Application Notes for Beijing InfoQuick SinoVoice Speech Technology (SinoVoice) jtts with Avaya Voice Portal Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Beijing InfoQuick SinoVoice Speech Technology (SinoVoice) jtts with Avaya Voice Portal Issue 1.0 Abstract These Application Notes describe

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Update Guide Version: 5.8.x Written by: Product Knowledge, R&D Date: Friday, December 08, 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Compiling and Running an Application from the Command Line

Compiling and Running an Application from the Command Line Appendix A Compiling and Running an Application from the Command Line This appendix describes how to run applications at the command line without using the integrated development environment (IDE) of Visual

More information

1 Review Information About this Guide

1 Review Information About this Guide Oracle Database Client Quick Installation Guide 10g Release 2 (10.2) for Microsoft Windows (32-Bit) B14314-02 December 2005 This guide describes how to quickly install the Oracle Database Client product

More information

Developing Desktop Apps for Ultrabook Devices in Windows 8*: Getting Started

Developing Desktop Apps for Ultrabook Devices in Windows 8*: Getting Started Developing Desktop Apps for Ultrabook Devices in Windows 8*: Getting Started By Paul Ferrill The Ultrabook provides a rich set of sensor capabilities to enhance a wide range of applications. It also includes

More information

Team Developer. There are no good reasons to stay in legacy mode.

Team Developer. There are no good reasons to stay in legacy mode. White paper FEATURES COMPARISON Microsoft.NET vs. Gupta Features Comparison There are no good reasons to stay in legacy mode. Our widely used technology and methodology converts code to clean, well organized,

More information

Teamcenter Installation on Linux Clients Guide. Publication Number PLM00010 J

Teamcenter Installation on Linux Clients Guide. Publication Number PLM00010 J Teamcenter 10.1 Installation on Linux Clients Guide Publication Number PLM00010 J Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle

More information

Importing Metadata From a Netezza Connection in Test Data Management

Importing Metadata From a Netezza Connection in Test Data Management Importing Metadata From a Netezza Connection in Test Data Management Copyright Informatica LLC 2003, 2017. Informatica, the Informatica logo, and PowerCenter are trademarks or registered trademarks of

More information

Compliance Guardian Online 2

Compliance Guardian Online 2 Compliance Guardian Online 2 Release Notes Cumulative Update 2 Issued January 2017 New Features and Improvements Improvements to job completion logic. Improvements to security trimming. Known Issues There

More information

MetaManager 3.3 New Features Guide METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING BSP Software LLC 1/5

MetaManager 3.3 New Features Guide METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING BSP Software LLC 1/5 METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING Version 3.3 New Features Guide 2008 2009 BSP Software LLC 1/5 Product Information This document applies to MetaManager TM Series 3 version 3 and may

More information

TPAM Security Product Client for Windows Security Product Client for Windows Guide

TPAM Security Product Client for Windows Security Product Client for Windows Guide TPAM Security Product Client for Windows 2.5.6 Security Product Client for Windows Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

C Language Documentation For Windows 7 64 Bit

C Language Documentation For Windows 7 64 Bit C Language Documentation For Windows 7 64 Bit You may need to handle very large numbers in the C language. For unlimited offline reading, you can download this article for free in PDF format: How to install

More information

1 Review Information About this Guide

1 Review Information About this Guide Oracle Database Client Quick Installation Guide 10g Release 2 (10.2) for Microsoft Windows (x64) B15685-03 July 2008 This guide describes how to quickly install the Oracle Database Client product on Windows

More information

Trustee Attributes. White Paper. February 2012

Trustee Attributes. White Paper. February 2012 Trustee Attributes White Paper February 2012 Table of Contents What is a Trustee Attribute?... 3 Users and Trustee Attributes... 3 How Trustee Attributes Work... 3 Administering Trustee Attributes... 6

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

Java Multilingual Elementary Tool

Java Multilingual Elementary Tool November 28, 2004 Outline Designing Outline Multilingual system: refer to computer programs which permit user interaction with the computer in one or more languages A Java multilingual elementary tool

More information

ESRI China (Hong Kong) Limited

ESRI China (Hong Kong) Limited Setting Proper Windows XP Environment for Displaying Spatial Data with Traditional Chinese Article ID : 100007 Software : ArcGIS Desktop 9.x Platform : Windows XP Home, Windows XP Professional Date : September

More information

Version Installation and User Guide

Version Installation and User Guide IBM Cognos 8 Business Intelligence Map Manager Version 8.4.1 Installation and User Guide Product Information This document applies to IBM Cognos 8 Version 8.4.1 and may also apply to subsequent releases.

More information

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow Pipeline Integration Services Creating an ETL Solution with SSIS Module Overview Introduction to ETL with SSIS Implementing Data Flow Lesson 1: Introduction to ETL with SSIS What Is SSIS? SSIS Projects

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

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

More information

Class Library java.lang Package. Bok, Jong Soon

Class Library java.lang Package. Bok, Jong Soon Class Library java.lang Package Bok, Jong Soon javaexpert@nate.com www.javaexpert.co.kr Object class Is the root of the class hierarchy. Every class has Object as a superclass. If no inheritance is specified

More information

Accella Toolbar. User Guide. Release 20.0

Accella Toolbar. User Guide. Release 20.0 Accella Toolbar User Guide Release 20.0 Table of Contents 2 Introduction... 9 2.1 About Accella Toolbar... 9 2.2 About This Guide... 9 2.3 Accessing Toolbar... 9 2.4 First Time Login... 10 2.5 Subsequent

More information