Developer Guide. Android Printing Framework. ISB Vietnam Co., Ltd. (IVC) Page i

Size: px
Start display at page:

Download "Developer Guide. Android Printing Framework. ISB Vietnam Co., Ltd. (IVC) Page i"

Transcription

1 Android Printing Framework ISB Vietnam Co., Ltd. (IVC) Page i

2 Table of Content 1 Introduction Terms and definitions Developer guide Overview Configure development environment Install APF Core module Install and configure APF SDK module Using APF SDK for proramming Create a connection to printing service Search the available devices connected to the system Synchronously searching method Asynchronously searching method Combine searching modes Cancel searching method Create new device object Search printer driver Add a new printer to the system Add printer without driver Add printer with giving driver Get printer from the system Remove the printer Print a file (submit a print job) Print an URL Print preview Cancel / Remove job Get jobs Get all jobs Get job by id Get job by state Get job by printer Get job by printer and state Using extend print options Technical Support ISB Vietnam Co., Ltd. (IVC) Page ii

3 1 Introduction This installation document guides you how to use APIs of APF Framework on Android project to build applications which support printing. 2 Terms and definitions This installation guideline has some definitions: APF: Android Printing Framework. ADT Plug-in: Android Development Tools, link: 3 Developer guide 3.1 Overview APF Mobile included two modules: APFCore: The core application of APF, was packed as Android package (APK) APFSdk: The SDK provide printing APIs for building printing application using APF 3.2 Configure development environment Install APF Core module The APFCore module must be installed to Android terminal before using the APF Framework. This is an Android Application Package (APK) so it s very easy to install. There is many ways to deliver this module. We list some of them here for your reference: Using ADB command from PC Copy to SD Card then install using File manager application Download from internet where you store this module, then install it Your application will pack this module as an asset item (on assets folder), and install this module when running. Etc Install and configure APF SDK module This APIs is provided under libapf.jar module, to use it, you must import it to your Android project by Eclipse with these steps: Copy the libapf.jar file to libs folder of your android project. If the libs folder does not exist, create a new one. If you re using new version of ADT Plug-in, the libapf.jar (after copied to libs folder) will be imported to your project automatically and the install step is finished. Otherwise, one more step should be done to finish. ISB Vietnam Co., Ltd. (IVC) Page 1/12

4 If you re using the old version of ADT Plug-in, right-click on your Android project, choose Properties, a dialog will appear like this: After that, choose Java Build Path tab on the left panel: ISB Vietnam Co., Ltd. (IVC) Page 2/12

5 Then press Add External JARs button and specific a libapf.jar file location and press Open, it will look like this: Then press OK to finished installation steps. 3.3 Using APF SDK for proramming The PrintingService class is designed to manage all operations of printing easily consist of: connect or disconnect to or from printing service, search devices that connected to system, add a new printer to system, remove or update a printer, set a printer as default printer of system, print / pause / resume / cancel a job or many jobs, etc To use the those function, the first step is get the instance of PrintingService by getinstance() method: PrintingService mprintingservice = PrintingService.getInstance(); Create a connection to printing service The first thing need to do is creating a connection to printing service. This step is very important to application since all methods need the connection must be initialized first. To create a connection with printing service, you need a key which be provided by ISB Vietnam Company Limited before (visit for more information). This key will be valid with only your application, other applications cannot use it. Once you got a key, we start the connection step. You should define the key and the printing service instance as global variables like this: ISB Vietnam Co., Ltd. (IVC) Page 3/12

6 private static final String YOUR_KEY = "RTFCRDhERDc1ODI0OTZEOUE2OEQ1QjMwRkUyNTUzMjcz" + "RTg5QUIxQ0JEMzE1RjgzQzJFNzcyMTNGNzQ5NDMzQ0Q0" + "QUQwQTVFMjVFNTIwNzNFMDBBMjlFQTRFOTlGQTQ3NDRB" + "QkY2OENEQjUyRDY1MjE5QjBCNjA1NTM1MDMzQUIyOEQ1" + "QUI4NTkzM0RCMjE5QTVCQ0M3M0NEMTZEREUwNUU2QjBF" + "MTEyNTMzNEE3QkI4NUIxQkYyQ0M3Qzc0MURCMDJDRjQw" + "NUYwNTJGQkY0OTJFQzk0MUE0QjM3NzgwNDVBQkU2MDIx" + "N0Q4QTJEQUQxRDM4MUEwNTJCQTFCQzE2QzY5M0M3MkU1" + "REU0RkFFMDU0RkUxMEZBQUM3MTAwOUZGM0QxMDYwRUQ0" + "QjhBNUJBRTlBN0JGQTQwQ0E1NDY4MzYxRjg0OEYxQTU4"; private PrintingService mprintingservice = null; Then, you should implement the ConnectionListener to listen when the connection with service was initialized successfully: private ConnectionListener mconnectionlistener = new ConnectionListener() { public void onservicedisconnected() { /* * When service disconnection, this event will be * called, so you should implement it to clean the * resource if any */ Log.d(TAG, "Disonnected to printing service"); ; public void onserviceconnected() { /* * This event will be called when service was * connected, the APIs only available after this * event. */ Log.d(TAG, "Connected to printing service"); this: Finally, on the oncreate() method of Activity, call the bind() method with your key like ISB Vietnam Co., Ltd. (IVC) Page 4/12

7 public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); /* * On the oncreate of activity, you must create a * connection to service */ mprintingservice = PrintingService.getInstance(this); mprintingservice.setconnectionlistener(mconnectionlistener); try { mprintingservice.bind(secret_key); catch (InvalidKeyException e) { e.printstacktrace(); Don t forget disconnect the service on ondestroy() method of activity when you don t use the connection anymore protected void ondestroy() { super.ondestroy(); /* * Application should release connection to * Printing rervice when exit */ if (mprintingservice!= null) mprintingservice.unbind(); Search the available devices connected to the system Once you connect with the PrintingService, you can find the devices which connected to the system by calling searching device method. The service provides 2 ways to searching device: synchronously and asynchronously. Both of 2 searching ways, we provide 5 modes of searching for Network, Bluetooth and USB printer on Device class includes: SEARCH_NW_NATIVE: Search Network printers using SNMP protocol ISB Vietnam Co., Ltd. (IVC) Page 5/12

8 SEARCH_NW_BOUNJOUR: Search Network printers using ZeroConfig protocol SEARCH_NW_ALL: Search all network printers using SNMP and ZeroConfig protocol SEARCH_BLUETOOTH: Search Bluetooth printer SEARCH_USB: Search USB printer Synchronously searching method With synchronously way, use the searchavailabledevices() method which will return a array list of devices that connected to the system: ArrayList<Device> devices = mprintingservice.searchavailabledevices(device.search_nw_all); The devices object will be null in case there is not any device connected to system. Otherwise, each Device object in devices will contain the uri, marker, model, serial and commandset of the device and can be gotten by using getter method: ArrayList<Device> devices = mprintingservice.searchavailabledevices(device.search_nw_all); if (devices == null) System.out.println("Devices list is null"); else { for (int i = 0; i < devices.size(); i ++) { Device device = devices.get(i); System.out.println("URI = " + device.geturi()); System.out.println("Model = " + device.getmodel()); System.out.println("Command = " + device.getcommandset()); Asynchronously searching method With asynchronously searching way, you need to register to PrintingService the listener which to listen when a new device was found. The device listener OnDeviceScaningListener object should be global variable and implement 3 needed methods which receive events from PrintingService: onstart(string token): Start scanning device, this method will be first call when scanning with token. You should store this token to distinguish with other scanning session or use to cancel this scanning session. onfound(string token, Device device): This method will be called when a new devices was found with this scanning session. ISB Vietnam Co., Ltd. (IVC) Page 6/12

9 method. onfinished(string token): This scanning process was finished when calling this private OnDeviceScanningListener mdevicescanninglistener = new OnDeviceScanningListener() { public void onstart(string token) { msearchasynctoken = token; Log.d(TAG, "Search with token = " + token); public void onfound(string token, Device device) { Log.d(TAG, "Device found with token = " + token); Log.d(TAG, "Model = " + device.getmodel()); Log.d(TAG, "Uri = " + device.geturi()); Log.d(TAG, "Cmd = " + device.getcommandset()); ; public void onfinished(string token) { Log.d(TAG, "Finished with token = " + token); Then, from somewhere you want to call scanning device method, just simple call searchavailabledevices() with searching mode and the listener object: mprintingservice.searchavailabledevices( Device.SEARCH_NW_BONJOUR, mdevicescanninglistener); Combine searching modes this: You can also combine the searching mode search more device at the searching session like mprintingservice.searchavailabledevices( Device.SEARCH_NW_BONJOUR Device.SEARCH_BLUETOOTH, mdevicescanninglistener); ISB Vietnam Co., Ltd. (IVC) Page 7/12

10 In above sample, we combine Bonjour searching method with Bluetooth searching method at one searching session Cancel searching method To force stop searching device process, you must have the searching token of that session, and simple call cancelsearch() with that token private static String msearchtoken = null;... // You already have the searching token from searching method boolean cancel = mprintingservice.cancelsearch(msearchtoken); Create new device object The Device object can be created by 2 ways: using the searchavailabledevices() method and manual. The manual way let you create a Device object by yourself by using setter method to set the maker, model, uri, commandset and series. However, only uri field is required of one Device object, you can leave other fields as null. Device deviceone = new Device(); deviceone.seturi("usb://device_one"); deviceone.setmodel("model of device one"); deviceone.setcommandset("ps,pcl,pzl"); Device devicetwo = new Device("Maker", "Model of device two", "socket://device_two", "PS, PCL", null); We highly recommend that you should use the devices object list which receive from searching method instead of devices create by manual except you know clearly about your devices you want to add to system Search printer driver After you have the Device object, the next step is - find the compatible driver for him. One device model has 2 parts: maker and model. You can search driver using this 2 parts. Example: I have device with model is: Canon MG6100 series. The maker of him is Canon, and the model is Canon MG6100 series. So search drivers for this printer is very easy by calling searchdrivers() method. The return values of searchdrivers() method is an array list of drivers or null object: The result is not null: in case your searching parameters are match or similar the driver from our system. ISB Vietnam Co., Ltd. (IVC) Page 8/12

11 The result is null: We not support your requested models OR the request parameters are incorrect. In this case, please check your request parameters. /* * This maker and model should be return from searching method, * however, we assume that those values like this */ // String maker = device.getmaker(); String maker = "Canon"; // String model = device.getmodel(); String model = "Canon MG6100 series"; /* * The result of searching by model will be little or null * if we don't have the driver for this printer */ ArrayList<Driver> drivers_1 = mprintingservice.searchdrivers( Driver.SEARCH_DEVICE_MODEL, model); /* Search by maker will return all drivers of this makers */ ArrayList<Driver> drivers_2 = mprintingservice.searchdrivers( Driver.SEARCH_DEVICE_MAKER, maker); /* Or we can get all drivers from system */ ArrayList<Driver> drivers_3 = mprintingservice.searchdrivers( Driver.SEARCH_ALL, null); Add a new printer to the system When you have a Device object, you can insert it into system by addprinter() method with parameters are this Device, the name of printer (and the driver if any). Printer name, in the system, is the id of printer, it must be unique and followed name format. Printer name must contain only letters, numbers, underscores, hyphens; and must be begun with letter or number. driver. We provide 2 ways of adding printer method: add printer without driver and add printer with Add printer without driver By default, if you add printer without giving driver object, the printer will be added with driver which be chosen by PrintingService: ISB Vietnam Co., Ltd. (IVC) Page 9/12

12 If you device is contain model of printer, we will search driver based on this model. In case we could not found any driver compatible with this driver, the adding process will failed and we will return null. If you device is not contain model (model is null), we will understand that you added the printer without using driver. In this case, any job for this printer will go out directly to printer without over any filters Device deviceone = new Device(); deviceone.seturi("usb://device_one"); deviceone.setmodel("model of device one"); Printer printer = ptminstance.addprinter(deviceone, "Printer-1"); In case printer was inserted successfully, addprinter() method will return the Printer object which installed to the system; and in the otherwise, it will return the null object Add printer with giving driver This method requires you have the Driver object before (by searching drivers APIs). In this case, we will add this printer with your driver right away. So please sure that you have choose the correct driver. ArrayList<Driver> drivers = mprintingservice.searchdrivers( Driver.SEARCH_DEVICE_MODEL, model); /* We assume that the first driver is best choice for printer one */ Driver driverone = drivers.get(0) Device deviceone = new Device(); deviceone.seturi("usb://device_one"); deviceone.setmodel("model of device one"); Printer printer = ptminstance.addprinter( deviceone, "Printer-1", driverone.getkey()); Get printer from the system In case you want to get the printer which you knew the name on the system, you can call getprinter() method with parameter is the name of printer that you want to get. ISB Vietnam Co., Ltd. (IVC) Page 10/12

13 Printer printer = mprintingservice.getprinter("printer-1"); if (printer == null) System.out.println("The printer is null"); else { System.out.println(printer.getName()); System.out.println(printer.getModel()); System.out.println(printer.getUri()); System.out.println(printer.getDriver()); // Other getter methods If you want to get all printers from the system, you can call getprinters() method. That function will get the array list of printer objects (hold all printers that be added into system). ArrayList<Printer> printers = mprintingservice.getprinters(); The printers object holds the list of printers that has been inserted into system. Each printer of printers object will contain name of printer. If you want to get full information of a printer, you can call the getter methods of Printer object. ArrayList<Printer> printers = mprintingservice.getprinters(); if (listprinter == null) System.out.println("Devices list is null"); else { for (int i = 0; i < printers.size(); i ++) { Printer printer = printers.get(i); System.out.println("Printer URI = " + printer.getname()); System.out.println("Printer URI = " + printer.geturi()); System.out.println("Printer model = " + printer.getmodel()); System.out.println("Printer URI = " + printer.getdriver()); Remove the printer In order to manage printer easily and smoothly, The PrintingService provides removeprinter() method to delete incorrect, unused printer or other purposes. To use removeprinter() function, you must specify the correct printer name which you want to delete; in case you delete a incorrect printer, no printer is deleted and it will return false, and in the otherwise, it will return true. ISB Vietnam Co., Ltd. (IVC) Page 11/12

14 boolean result = mprintingservice.removeprinter("printer-1"); Print a file (submit a print job) A print job was created must be contain a file name which to be printed, the destination printer and print options if any. You can create new print job like this: String filename = "/mnt/sdcard/test.pdf"; String printername = "HP-P1006"; PrintOption option = null; long jobid = mprintingservice.printfile(printername, filename, option); Or if you want to set specific PrintOption, you can: PrintOption option = new PrintOption(); option.setcollate(true); option.setnumberofcopies(2); long jobid = mprintingservice.printfile(printername, filename, option); The jobid must be greater than zero if success Print an URL Like the printfile() method, the printurl() method will print the internet web page with giving address. String url = " String printername = "HP-P1006"; PrintOption option = null; long jobid = mprintingservice.printfile(printername, url, option); Please note that this method will take time since we need to download this web page then render it to out print file Print preview Before making real print a file or an URL, maybe you want to make print preview to take a look for your job. We can support you that feature by providing printpreview() method and OnPrintPreviewListener class. The print preview method is asynchonouslly method and the output of print preview is JPEG file. So you should register OnPrintPreviewListener to know which pages was preview completed. You also need one token for print preview and cancel print preview. Please note that the listener object and the print preview token should be global variable. ISB Vietnam Co., Ltd. (IVC) Page 12/12

15 private OnPrintPreviewListener mprintpreviewlistener = new OnPrintPreviewListener() { public void onbeginpreview(string token) { // Start preview with token public void onpagefinished(string token, int number, String path) { // Be called when one page is preview completed public void onfinishedpreview(string token) { // The preview process was completed ; private static String mpreviewtoken = null; Then, register this listener object to PrintingService and start to preview: mprintingservice.setonprintpreviewlistener(mprintpreviewlistener); String printername = "Canon-MG6130"; String filepath = "/mnt/sdcard/myfolder/myfile.png"; PrintOption options = new PrintOption(); options.setfittopage(true); option.setorientation(orientation.portrait); String outputdir = "/mnt/sdcard/preview"; String outputprefix = "mypreview_%03d.png"; Int outwidth = 100; Int outheight = 100; mprintingservice.printpreview(printername, filepath, options, outputdir, outputpreview, outwidth, outheight)); Cancel / Remove job ISB Vietnam Co., Ltd. (IVC) Page 13/12

16 remove job. PrintingService also provides method to take more operations to job consist of: cancel / long jobid = mprintingservice.printfile(filename, printername, option); // Call pause / resume / cancel / remove job boolean result = false; result = mprintingservice.canceljob(printername, jobid); // result = mprintingservice.removejob(printername, jobid); The result return value is true if the operation is success, false otherwise Get jobs To view the list of jobs which submitted, PrintingService provides many types of get job methods to serve many purposes Get all jobs The first one is get all jobs. This method simple return all jobs were submitted of all printers ArrayList<Job> completedjobs = mprintingservice.getjobs(); Get job by id The next one is get job by id, allow you get the job with the giving id. If the id is invalid or not existed on the system, the null object will be return. int jobid = 10; Job job = mprintingservice.getjob(jobid); Get job by state The next one is get job by state, the giving state will decides which jobs will be selected and return. The definition of state is defined in JobState class. The giving state should be one of these states, or combine them for more states // I want to get jobs which completed ArrayList<Job> completedjobs = mprintingservice.getjobs(jobstate.completed); // Then I want to get jobs pending and processing ArrayList<Job> activejobs = mprintingservice.getjobs(jobstate.pending JobState.PROCESSING); Get job by printer To get jobs of printer, simple giving the name of printer to get job method ISB Vietnam Co., Ltd. (IVC) Page 14/12

17 String printername = "Canon-MG6130"; ArrayList<Job> jobs = mprintingservice.getjobs(printername); Get job by printer and state Like other get job method, this method simple giving the name of printer and the states to get the list of jobs. You also can combine job state to get more jobs: // I want to get jobs which completed of printer EPSON-EP804A String printername = "EPSON-EP804A"; ArrayList<Job> completedjobs = mprintingservice.getjobs(printername, JobState.COMPLETED); // Then I want to get jobs pending and processing ArrayList<Job> activejobs = mprintingservice.getjobs(printername, JobState.PENDING JobState.PROCESSING); Using extend print options Beside many standard options which defined in PrintOption class, PrintingService also provides many extend options base on driver such as: Paper size, Paper type and Paper source We used Choice object to present one option of them. Examine that Paper sizes supported are: A4, A5, Letter, Legal, so that each item (A4 or A5 or Letter or Legal) is a Choice. Each choice has 3 fields: keyword, value and display: The keyword and value is used to PrintOption can knows which extend option was chosen. The display is the user-friendly text can help the end-user understand the option easily To get these extend options, use the appropriate methods: ArrayList<Choice> papersizes = mprintingservice.getpapersizes(printername); PrintOption option = new PrintOption(); option.setcollate(true); option.setnumberofcopies(2); // Get one of paper sizes option.addexoption(papersizes.get(0)); long jobid = mprintingservice.printfile(filename, printername, option); ISB Vietnam Co., Ltd. (IVC) Page 15/12

18 Moreover, if you want to get the default value of these extend option, PrintingService can do it for you by providing many methods to get it. The default extend option value help you define which item on the list of extend options is default. ArrayList<Choice> papersizes = mprintingservice.getpapersizes(printername); String defaultsizevalue = mprintingservice.getdefaultpapersize(printername); Choice defaultpapersize = null; for (Choice choice : papersizes) { if (choice.getvalue().equals(defaultsizevalue) { defaultpapersize = choice; break; PrintOption option = new PrintOption(); option.setcollate(true); option.setnumberofcopies(2); // Get one of paper sizes option.addexoption(defaultpapersize); long jobid = mprintingservice.printfile(filename, printername, option); ISB Vietnam Co., Ltd. (IVC) Page 16/12

19 4 Technical Support For technical support or advice, please contact these mail addresses: Mr. Tan Quang Sang: Mr. Phan Dang Duy Thinh: ISB Vietnam Co., Ltd. (IVC) Page 17/12

ID TECH UniMag Android SDK User Manual

ID TECH UniMag Android SDK User Manual ID TECH UniMag Android SDK User Manual 80110504-001-A 12/03/2010 Revision History Revision Description Date A Initial Release 12/03/2010 2 UniMag Android SDK User Manual Before using the ID TECH UniMag

More information

How to develop your own app

How to develop your own app How to develop your own app It s important that everything on the hardware side and also on the software side of our Android-to-serial converter should be as simple as possible. We have the advantage that

More information

Colorfly Tablet Upgrade Guide

Colorfly Tablet Upgrade Guide Colorfly Tablet Upgrade Guide (PhoenixSuit) 1. Downloading the Firmware and Upgrade Tool 1. Visit the official website http://www.colorful.cn/, choose 产 品 > 数 码 类 > 平 板 电 脑, and click the product to be

More information

TomTom PRO 82xx PRO.connect developer guide

TomTom PRO 82xx PRO.connect developer guide TomTom PRO 82xx PRO.connect developer guide Contents Introduction 3 Preconditions 4 Establishing a connection 5 Preparations on Windows... 5 Preparations on Linux... 5 Connecting your TomTom PRO 82xx device

More information

Advertiser Campaign SDK Your How-to Guide

Advertiser Campaign SDK Your How-to Guide Advertiser Campaign SDK Your How-to Guide Using Leadbolt Advertiser Campaign SDK with Android Apps Version: Adv2.03 Copyright 2012 Leadbolt All rights reserved Disclaimer This document is provided as-is.

More information

Introduction to NaviGenie SDK Client API for Android

Introduction to NaviGenie SDK Client API for Android Introduction to NaviGenie SDK Client API for Android Overview 3 Data access solutions. 3 Use your own data in a highly optimized form 3 Hardware acceleration support.. 3 Package contents.. 4 Libraries.

More information

Login with Amazon Getting Started Guide for Android. Version 2.0

Login with Amazon Getting Started Guide for Android. Version 2.0 Getting Started Guide for Android Version 2.0 Login with Amazon: Getting Started Guide for Android Copyright 2016 Amazon.com, Inc., or its affiliates. All rights reserved. Amazon and the Amazon logo are

More information

How To Write A File Station In Android.Com (For Free) On A Microsoft Macbook Or Ipad (For A Limited Time) On An Ubuntu 8.1 (For Ubuntu) On Your Computer Or Ipa (For

How To Write A File Station In Android.Com (For Free) On A Microsoft Macbook Or Ipad (For A Limited Time) On An Ubuntu 8.1 (For Ubuntu) On Your Computer Or Ipa (For QtsHttp Java Sample Code for Android Getting Started Build the develop environment QtsHttp Java Sample Code is developed using ADT Bundle for Windows. The ADT (Android Developer Tools) Bundle includes:

More information

How to build your first Android Application in Windows

How to build your first Android Application in Windows APPLICATION NOTE How to build your first Android Application in Windows 3/30/2012 Created by: Micah Zastrow Abstract This application note is designed to teach the reader how to setup the Android Development

More information

Hello World. by Elliot Khazon

Hello World. by Elliot Khazon Hello World by Elliot Khazon Prerequisites JAVA SDK 1.5 or 1.6 Windows XP (32-bit) or Vista (32- or 64-bit) 1 + more Gig of memory 1.7 Ghz+ CPU Tools Eclipse IDE 3.4 or 3.5 SDK starter package Installation

More information

Installing the Android SDK

Installing the Android SDK Installing the Android SDK To get started with development, we first need to set up and configure our PCs for working with Java, and the Android SDK. We ll be installing and configuring four packages today

More information

Mobile App Sensor Documentation (English Version)

Mobile App Sensor Documentation (English Version) Mobile App Sensor Documentation (English Version) Mobile App Sensor Documentation (English Version) Version: 1.2.1 Date: 2015-03-25 Author: email: Kantar Media spring support@spring.de Content Mobile App

More information

Developing In Eclipse, with ADT

Developing In Eclipse, with ADT Developing In Eclipse, with ADT Android Developers file://v:\android-sdk-windows\docs\guide\developing\eclipse-adt.html Page 1 of 12 Developing In Eclipse, with ADT The Android Development Tools (ADT)

More information

DocuPrint C3290 FS Features Setup Guide

DocuPrint C3290 FS Features Setup Guide DocuPrint C3290 FS Features Setup Guide Adobe and PostScript are trademarks of Adobe Systems Incorporated in the United States and/or other countries. Apple, Bonjour, ColorSync, EtherTalk, Macintosh, and

More information

Android Environment SDK

Android Environment SDK Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 2A. Android Environment: Eclipse & ADT The Android

More information

AdFalcon Android SDK 2.1.4 Developer's Guide. AdFalcon Mobile Ad Network Product of Noqoush Mobile Media Group

AdFalcon Android SDK 2.1.4 Developer's Guide. AdFalcon Mobile Ad Network Product of Noqoush Mobile Media Group AdFalcon Android SDK 214 Developer's Guide AdFalcon Mobile Ad Network Product of Noqoush Mobile Media Group Table of Contents 1 Introduction 3 Supported Android version 3 2 Project Configurations 4 Step

More information

Android Development. http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系

Android Development. http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Android Development http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Android 3D 1. Design 2. Develop Training API Guides Reference 3. Distribute 2 Development Training Get Started Building

More information

IOIO for Android Beginners Guide Introduction

IOIO for Android Beginners Guide Introduction IOIO for Android Beginners Guide Introduction This is the beginners guide for the IOIO for Android board and is intended for users that have never written an Android app. The goal of this tutorial is to

More information

Running a Program on an AVD

Running a Program on an AVD Running a Program on an AVD Now that you have a project that builds an application, and an AVD with a system image compatible with the application s build target and API level requirements, you can run

More information

Xerox 700 Digital Color Press with Integrated Fiery Color Server. Utilities

Xerox 700 Digital Color Press with Integrated Fiery Color Server. Utilities Xerox 700 Digital Color Press with Integrated Fiery Color Server Utilities 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45072726

More information

Android: How To. Thanks. Aman Nijhawan

Android: How To. Thanks. Aman Nijhawan Android: How To. This is just a collection of useful information and tricks that I used during the time I was developing on the android ADP1. In some cases the information might be a little old and new

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Network Fax Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Network Fax Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Network Fax Guide 2009 KYOCERA MITA Corporation All rights reserved Preface Thank you for purchasing Multifunctional Digital Color Systems. This manual explains the instructions

More information

Overview of Web Services API

Overview of Web Services API 1 CHAPTER The Cisco IP Interoperability and Collaboration System (IPICS) 4.5(x) application programming interface (API) provides a web services-based API that enables the management and control of various

More information

imageprograf Direct Print & Share Guide

imageprograf Direct Print & Share Guide imageprograf Direct Print & Share Guide imageprograf Direct Print & Share Guide Ver. 2.0 Canon Inc. 1. Features of imageprograf Direct Print & Share The features of imageprograf Direct Print & Share are

More information

ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I)

ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I) ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I) Who am I? Lo Chi Wing, Peter Lecture 1: Introduction to Android Development Email: Peter@Peter-Lo.com Facebook: http://www.facebook.com/peterlo111

More information

IceWarp to IceWarp Server Migration

IceWarp to IceWarp Server Migration IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone

More information

Android Application Repackaging

Android Application Repackaging ISA 564, Laboratory 4 Android Exploitation Software Requirements: 1. Android Studio http://developer.android.com/sdk/index.html 2. Java JDK http://www.oracle.com/technetwork/java/javase/downloads/index.html

More information

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING Like most people, you probably fill out business forms on a regular basis, including expense reports, time cards, surveys,

More information

With a single download, the ADT Bundle includes everything you need to begin developing apps:

With a single download, the ADT Bundle includes everything you need to begin developing apps: Get the Android SDK The Android SDK provides you the API libraries and developer tools necessary to build, test, and debug apps for Android. The ADT bundle includes the essential Android SDK components

More information

Example Connection between USB Host and Android

Example Connection between USB Host and Android Example connection between USB Host and Android Example Connection between USB Host and Android This example illustrates the connection between Board ETMEGA2560-ADK and Android through Port USB Host. In

More information

Android Environment SDK

Android Environment SDK Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 Android Environment: Eclipse & ADT The Android

More information

Python for Series 60 Platform

Python for Series 60 Platform F O R U M N O K I A Getting Started with Python for Series 60 Platform Version 1.2; September 28, 2005 Python for Series 60 Platform Copyright 2005 Nokia Corporation. All rights reserved. Nokia and Nokia

More information

Informatica Cloud Connector for SharePoint 2010/2013 User Guide

Informatica Cloud Connector for SharePoint 2010/2013 User Guide Informatica Cloud Connector for SharePoint 2010/2013 User Guide Contents 1. Introduction 3 2. SharePoint Plugin 4 3. Objects / Operation Matrix 4 4. Filter fields 4 5. SharePoint Configuration: 6 6. Data

More information

CHAPTER 6: SEARCHING AN ONLINE DATABASE

CHAPTER 6: SEARCHING AN ONLINE DATABASE CHAPTER 6: SEARCHING AN ONLINE DATABASE WHAT S INSIDE Searching an Online Database... 6-1 Selecting a Display Mode... 6-1 Searching a Database... 6-1 Reviewing References... 6-2 Finding Full Text for a

More information

Spring Design ScreenShare Service SDK Instructions

Spring Design ScreenShare Service SDK Instructions Spring Design ScreenShare Service SDK Instructions V1.0.8 Change logs Date Version Changes 2013/2/28 1.0.0 First draft 2013/3/5 1.0.1 Redefined some interfaces according to issues raised by Richard Li

More information

UFR II Driver Guide. UFR II Driver Ver. 2.20 ENG

UFR II Driver Guide. UFR II Driver Ver. 2.20 ENG UFR II Driver Guide UFR II Driver Ver. 2.20 Please read this guide before operating this product. After you finish reading this guide, store it in a safe place for future reference. ENG 0 Ot UFR II Driver

More information

APIS CARM NG Quick Start Guide for MS Windows

APIS CARM NG Quick Start Guide for MS Windows APIS CARM NG Quick Start Guide for MS Windows The information contained in this document may be changed without advance notice and represents no obligation on the part of the manufacturer. The software

More information

BioWin Network Installation

BioWin Network Installation BioWin Network Installation Introduction This document outlines the procedures for installing the network version of BioWin. There are three parts to the network version installation: 1. The installation

More information

Advantages. manage port forwarding, set breakpoints, and view thread and process information directly

Advantages. manage port forwarding, set breakpoints, and view thread and process information directly Part 2 a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 Android Environment: Eclipse & ADT The Android

More information

Manual Password Depot Server 8

Manual Password Depot Server 8 Manual Password Depot Server 8 Table of Contents Introduction 4 Installation and running 6 Installation as Windows service or as Windows application... 6 Control Panel... 6 Control Panel 8 Control Panel...

More information

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

WIRIS quizzes web services Getting started with PHP and Java

WIRIS quizzes web services Getting started with PHP and Java WIRIS quizzes web services Getting started with PHP and Java Document Release: 1.3 2011 march, Maths for More www.wiris.com Summary This document provides client examples for PHP and Java. Contents WIRIS

More information

Composite.Community.Newsletter - User Guide

Composite.Community.Newsletter - User Guide Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This

More information

Android Development Setup [Revision Date: 02/16/11]

Android Development Setup [Revision Date: 02/16/11] Android Development Setup [Revision Date: 02/16/11] 0. Java : Go to the URL below to access the Java SE Download page: http://www.oracle.com/technetwork/java/javase/downloads/index.html Select Java Platform,

More information

Android Development. Marc Mc Loughlin

Android Development. Marc Mc Loughlin Android Development Marc Mc Loughlin Android Development Android Developer Website:h:p://developer.android.com/ Dev Guide Reference Resources Video / Blog SeCng up the SDK h:p://developer.android.com/sdk/

More information

Using Avaya Aura Messaging

Using Avaya Aura Messaging Using Avaya Aura Messaging Release 6.3.2 Issue 1 December 2014 Contents Chapter 1: Getting Started... 4 Messaging overview... 4 Prerequisites... 4 Accessing your mailbox from any phone... 4 Accessing the

More information

Installing the OKI MCx61MFP USB Attached, in Windows 8

Installing the OKI MCx61MFP USB Attached, in Windows 8 Installing the OKI MCx61MFP USB Attached, in Windows 8 Preface Note: The following instruction uses screenshots of either the OKI MC561MFP for illustration purposes. However, these instructions apply to

More information

CANON FAX L360 SOFTWARE MANUAL

CANON FAX L360 SOFTWARE MANUAL CANON FAX L360 SOFTWARE MANUAL Before You Begin the Installation: a Checklist 2 To ensure a smooth and successful installation, take some time before you begin to plan and prepare for the installation

More information

System Reference 2013

System Reference 2013 System Reference 2013 Content List of graphics...3 List of tables...4 1 Purpose of LynxSight...5 2 Setting up project...6 2.1 Project dependences...6 2.1.1 Operating system...6 2.1.2 Eclipse IDE...6 2.1.3

More information

HTTPS hg clone https://bitbucket.org/dsegna/device plugin library SSH hg clone ssh://hg@bitbucket.org/dsegna/device plugin library

HTTPS hg clone https://bitbucket.org/dsegna/device plugin library SSH hg clone ssh://hg@bitbucket.org/dsegna/device plugin library Contents Introduction... 2 Native Android Library... 2 Development Tools... 2 Downloading the Application... 3 Building the Application... 3 A&D... 4 Polytel... 6 Bluetooth Commands... 8 Fitbit and Withings...

More information

Xerox 700 Digital Color Press with Integrated Fiery Color Server. Printing from Mac OS

Xerox 700 Digital Color Press with Integrated Fiery Color Server. Printing from Mac OS Xerox 700 Digital Color Press with Integrated Fiery Color Server Printing from Mac OS 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product.

More information

Print Server Application Guide. This guide applies to the following models.

Print Server Application Guide. This guide applies to the following models. Print Server Application Guide This guide applies to the following models. TL-WR842ND TL-WR1042ND TL-WR1043ND TL-WR2543ND TL-WDR4300 CONTENTS Chapter 1. Overview... 1 Chapter 2. Before Installation...

More information

Global Monitoring + Support

Global Monitoring + Support Use HyperTerminal to access your Global Monitoring Units View and edit configuration settings View live data Download recorded data for use in Excel and other applications HyperTerminal is one of many

More information

Legal Notes. Regarding Trademarks. Models supported by the KX printer driver. 2011 KYOCERA MITA Corporation

Legal Notes. Regarding Trademarks. Models supported by the KX printer driver. 2011 KYOCERA MITA Corporation Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Mobile Application Development

Mobile Application Development Mobile Application Development (Android & ios) Tutorial Emirates Skills 2015 3/26/2015 1 What is Android? An open source Linux-based operating system intended for mobile computing platforms Includes a

More information

How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 (

How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 ( Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

Xerox EX Print Server, Powered by Fiery, for the Xerox 700 Digital Color Press. Printing from Windows

Xerox EX Print Server, Powered by Fiery, for the Xerox 700 Digital Color Press. Printing from Windows Xerox EX Print Server, Powered by Fiery, for the Xerox 700 Digital Color Press Printing from Windows 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices

More information

Arduino & Android. A How to on interfacing these two devices. Bryant Tram

Arduino & Android. A How to on interfacing these two devices. Bryant Tram Arduino & Android A How to on interfacing these two devices Bryant Tram Contents 1 Overview... 2 2 Other Readings... 2 1. Android Debug Bridge -... 2 2. MicroBridge... 2 3. YouTube tutorial video series

More information

Chapter 1 Downloading Images to Your Computer (Windows)

Chapter 1 Downloading Images to Your Computer (Windows) Software User Guide For the safe use of your camera, be sure to read the Safety Precautions thoroughly before use. Types of software installed on your computer varies depending on the method of installation

More information

FileMaker Server 7. Administrator s Guide. For Windows and Mac OS

FileMaker Server 7. Administrator s Guide. For Windows and Mac OS FileMaker Server 7 Administrator s Guide For Windows and Mac OS 1994-2004, FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark

More information

Status Monitoring. Using Drivers by Seagull to Display Printer Status Information WHITE PAPER

Status Monitoring. Using Drivers by Seagull to Display Printer Status Information WHITE PAPER Status Monitoring Using Drivers by Seagull to Display Printer Status Information WHITE PAPER Contents Printer Communications 3 Drivers by Seagull 3 The Seagull Status Monitor 4 Important Benefits 4 Viewing

More information

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples Networking General networking Networking overview A network is a collection of devices such as computers, printers, Ethernet hubs, wireless access points, and routers connected together for communication

More information

Chapter 2 Getting Started

Chapter 2 Getting Started Welcome to Android Chapter 2 Getting Started Android SDK contains: API Libraries Developer Tools Documentation Sample Code Best development environment is Eclipse with the Android Developer Tool (ADT)

More information

Smooks Dev Tools Reference Guide. Version: 1.1.0.GA

Smooks Dev Tools Reference Guide. Version: 1.1.0.GA Smooks Dev Tools Reference Guide Version: 1.1.0.GA Smooks Dev Tools Reference Guide 1. Introduction... 1 1.1. Key Features of Smooks Tools... 1 1.2. What is Smooks?... 1 1.3. What is Smooks Tools?... 2

More information

MF Driver Installation Guide

MF Driver Installation Guide English MF Driver Installation Guide User Software CD-ROM.................................................................. 1 About the Drivers and Software..................................................................

More information

GE Healthcare Life Sciences UNICORN 5.31. Administration and Technical Manual

GE Healthcare Life Sciences UNICORN 5.31. Administration and Technical Manual GE Healthcare Life Sciences UNICORN 5.31 Administration and Technical Manual Table of Contents Table of Contents 1 Network setup... 1.1 Network terms and concepts... 1.2 Network environment... 1.3 UNICORN

More information

OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES

OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES Thank you for purchasing OFFICE KEYBOARD. This User s manual contains all information that helps you to operate your keyboard. Please keep the software

More information

Getting Started with Android Development

Getting Started with Android Development Getting Started with Android Development By Steven Castellucci (v1.1, January 2015) You don't always need to be in the PRISM lab to work on your 4443 assignments. Working on your own computer is convenient

More information

Mocean Android SDK Developer Guide

Mocean Android SDK Developer Guide Mocean Android SDK Developer Guide For Android SDK Version 3.2 136 Baxter St, New York, NY 10013 Page 1 Table of Contents Table of Contents... 2 Overview... 3 Section 1 Setup... 3 What changed in 3.2:...

More information

17 April 2014. Remote Scan

17 April 2014. Remote Scan 17 April 2014 Remote Scan 2014 Electronics For Imaging. The information in this publication is covered under Legal Notices for this product. Contents 3 Contents...5 Accessing...5 Mailboxes...5 Connecting

More information

Metasys System Direct Connection and Dial-Up Connection Application Note

Metasys System Direct Connection and Dial-Up Connection Application Note Metasys System Direct Connection and Dial-Up Connection Application Note Code No. LIT-1201639 Software Release 5.1 Issued August 27, 2013 Supersedes October 4 2010 Refer to the QuickLIT website for the

More information

Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011

Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011 Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011 The information contained in this guide is not of a contractual nature and may be subject to change without prior notice. The software described in this guide

More information

Troubleshooting File and Printer Sharing in Microsoft Windows XP

Troubleshooting File and Printer Sharing in Microsoft Windows XP Operating System Troubleshooting File and Printer Sharing in Microsoft Windows XP Microsoft Corporation Published: November 2003 Updated: August 2004 Abstract File and printer sharing for Microsoft Windows

More information

Lecture 1 Introduction to Android

Lecture 1 Introduction to Android These slides are by Dr. Jaerock Kwon at. The original URL is http://kettering.jrkwon.com/sites/default/files/2011-2/ce-491/lecture/alecture-01.pdf so please use that instead of pointing to this local copy

More information

How To Understand The Error Codes On A Crystal Reports Print Engine

How To Understand The Error Codes On A Crystal Reports Print Engine Overview Error Codes This document lists all the error codes and the descriptions that the Crystal Reports Print Engine generates. PE_ERR_NOTENOUGHMEMORY (500) There is not enough memory available to complete

More information

Developing for MSI Android Devices

Developing for MSI Android Devices Android Application Development Enterprise Features October 2013 Developing for MSI Android Devices Majority is the same as developing for any Android device Fully compatible with Android SDK We test using

More information

PubMatic Android SDK. Developer Guide. For Android SDK Version 4.3.5

PubMatic Android SDK. Developer Guide. For Android SDK Version 4.3.5 PubMatic Android SDK Developer Guide For Android SDK Version 4.3.5 Nov 25, 2015 1 2015 PubMatic Inc. All rights reserved. Copyright herein is expressly protected at common law, statute, and under various

More information

Print Server Application Guide

Print Server Application Guide Print Server Application Guide TD W8968 TD W8970 / TD W8970B TD W8980 / TD W8980B Rev: 1.0.0 1910010772 Contents Overview...1 Installation for Windows OS...2 Application for Windows OS...7 How to launch/exit

More information

WinSCP for Windows: Using SFTP to upload files to a server

WinSCP for Windows: Using SFTP to upload files to a server WinSCP for Windows: Using SFTP to upload files to a server Quickstart guide Developed by: Academic Technology Services & User Support, CIT atc.cit.cornell.edu Last updated 9/9/08 WinSCP 4.1.6 Getting started

More information

CONTENTS. Contents > 3

CONTENTS. Contents > 3 PREFACE Every effort has been made to ensure that the information in this document is complete, accurate, and up-to-date. The manufacturer assumes no responsibility for the results of errors beyond its

More information

Downloading Images and Movies from a Digital Camera to OLYMPUS Master 2

Downloading Images and Movies from a Digital Camera to OLYMPUS Master 2 Overview Downloading Images and Movies from a Digital Camera to OLYMPUS Master 2 This article describes how to download image and movie files from an Olympus digital camera 1 to the OLYMPUS Master 2 application.

More information

Version 6.x Generic. KYOCERA KX DRIVER 6.x USER GUIDE

Version 6.x Generic. KYOCERA KX DRIVER 6.x USER GUIDE Version 6.x Generic KYOCERA KX DRIVER 6.x USER GUIDE Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice.

More information

Printer Sharing of the PT-9500pc in a Windows Environment

Printer Sharing of the PT-9500pc in a Windows Environment Printer Sharing of the PT-9500pc in a Windows Environment This procedure is for configuring the PT-9500pc as a shared printer in Microsoft Windows. For printer sharing to operate correctly, please be sure

More information

Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development.

Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development. Android Development 101 Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development. Activity In Android, each application (and perhaps each screen

More information

Installing the Microsoft Network Driver Interface

Installing the Microsoft Network Driver Interface Installing the Microsoft Network Driver Interface Overview This guide explains how to install the PictureTel Live200 Microsoft Network Driver Interface (NDIS) software you have downloaded from PictureTel's

More information

Release Notes Version 1.1.3 of Windows Mobile 6.1 Operating System for the Allegro MX Field PC

Release Notes Version 1.1.3 of Windows Mobile 6.1 Operating System for the Allegro MX Field PC Release Notes Version 1.1.3 of Windows Mobile 6.1 Operating System for the Allegro MX Field PC February 2009 These release notes describe important information for Release 1.1.3 of Windows Mobile 6.1 for

More information

TOSHIBA GA-1310. Printing from Windows

TOSHIBA GA-1310. Printing from Windows TOSHIBA GA-1310 Printing from Windows 2009 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45081979 04 February 2009 CONTENTS 3 CONTENTS

More information

Operating Instructions Driver Installation Guide

Operating Instructions Driver Installation Guide Operating Instructions Driver Installation Guide For safe and correct use, be sure to read the Safety Information in "Read This First" before using the machine. TABLE OF CONTENTS 1. Introduction Before

More information

Network DK2 DESkey Installation Guide

Network DK2 DESkey Installation Guide VenturiOne Getting Started Network DK2 DESkey Installation Guide PD-056-306 DESkey Network Server Manual Applied Cytometry CONTENTS 1 DK2 Network Server Overview... 2 2 DK2 Network Server Installation...

More information

PP8X Printer Driver Installation Instruction

PP8X Printer Driver Installation Instruction PP8X Printer Driver Installation Instruction Pinnacle Technology Corp. CONTENTS 1 BT Device Installation... 1 2 Printer Driver Installation... 6 3 How to Know the Connecting Port... 10 4 How to Configure

More information

Getting Started. Confirm that the Wi-Fi settings on your mobile terminal are enabled. Download Canon Mobile Printing and install it.

Getting Started. Confirm that the Wi-Fi settings on your mobile terminal are enabled. Download Canon Mobile Printing and install it. Getting Started Check the network connection environment. The mobile terminal must be connected to a wireless LAN access point. The access point and the Canon device you are using must be connected by

More information

Customer Release Notes for Xerox Integrated Fiery Color Server for the Xerox Color C75 Press, version 1.0

Customer Release Notes for Xerox Integrated Fiery Color Server for the Xerox Color C75 Press, version 1.0 Customer Release Notes for Xerox Integrated Fiery Color Server for the Xerox Color C75 Press, version 1.0 This document contains important information about this release. Be sure to provide this information

More information

Using These Manuals. How to Use the. Software User Guide. Display examples: 1. Understanding How to Use Your Camera.

Using These Manuals. How to Use the. Software User Guide. Display examples: 1. Understanding How to Use Your Camera. Software User Guide For the safe use of your camera, be sure to read the Safety Precautions thoroughly before use. Types of software installed on your computer varies depending on the method of installation

More information

October, 2015. Install/Uninstall Xerox Print Drivers & Apps Best Practices for Windows 8, 8.1, and 10 Customer Tip

October, 2015. Install/Uninstall Xerox Print Drivers & Apps Best Practices for Windows 8, 8.1, and 10 Customer Tip October, 2015 Install/Uninstall Xerox Print Drivers & Apps Best Practices for Windows 8, 8.1, and 10 Customer Tip 2015 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, ColorQube, and WorkCentre

More information

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM User Guide Revision D Issued July 2014 Table of Contents About CRM Migration Manager... 4 System Requirements... 5 Operating Systems... 5 Dynamics

More information

SyncThru TM Web Admin Service Administrator Manual

SyncThru TM Web Admin Service Administrator Manual SyncThru TM Web Admin Service Administrator Manual 2007 Samsung Electronics Co., Ltd. All rights reserved. This administrator's guide is provided for information purposes only. All information included

More information

HP LaserJet MFP Analog Fax Accessory 300 Send Fax Driver Guide

HP LaserJet MFP Analog Fax Accessory 300 Send Fax Driver Guide HP LaserJet MFP Analog Fax Accessory 300 Send Fax Driver Guide Copyright and License 2008 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation, or translation without prior written

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

MS Active Sync: Sync with External Memory Files

MS Active Sync: Sync with External Memory Files Mindfire Solutions - 1 - MS Active Sync: Sync with External Memory Files Author: Rahul Gaur Mindfire Solutions, Mindfire Solutions - 2 - Table of Contents Overview 3 Target Audience 3 Conventions...3 1.

More information