Lightscribe Public Windows Software Development Kit

Size: px
Start display at page:

Download "Lightscribe Public Windows Software Development Kit"

Transcription

1 Lightscribe Public Windows Software Development Kit About this Specification This document is the official Public LightScribe Software Development Kit (SDK) for Microsoft Windows. Hewlett-Packard (HP) reserves the right to provide updates or revisions to this specification. This document's purpose is to describe the components to be used by third-party independent software developers and vendors (ISVs) to support LightScribe Generation I optical disc media labeling. If the vendor wishes to use the LightScribe trademark they must submit the application for compliance testing and agree to the LightScribe Trademark Agreement. Prerequisites The LightScribe Direct Disc Labeling technology builds on existing industry standards for optical discs and hardware. This document assumes that readers are already familiar with these existing standards and that the products enabled with LightScribe Direct Disc Labeling technology are in full compliance with these standards. Legal Disclaimers and Licensing Claims Copyright Disclaimer (c) Copyright 2008 Hewlett-Packard Development Company, LP The LightScribe Software Requirements Specification is published by Hewlett-Packard Company (Palo Alto, CA, USA). All rights reserved. Reproduction in whole or in part is prohibited without express, prior written permission of HP. The information contained herein is believed to be accurate as of the date of publication. However, HP shall not be liable for any damages, including indirect or consequential, from use of the LightScribe Direct Disc Labeling System or reliance on the accuracy of this document. Version Information Version 3.0 September 6, 2008 In Version 3.0, the following changes were made. The LSPrintLauncher library has been deprecated in favor of the LSPrintAPI library. New users of the SDK should use the LSPrintAPI library. This document will describe the LSPrintAPI library and its functionality. Additional APIs were added to facilitate unattended, programmatic control of the printing. These APIs include: o get_drive_count()

2 o get_drive_path() o get_drive_display_name() o get_drive_status() o get_print_status() o abort_print() Additional command line options were added to the launch_printing_dialog() API to facilitate unattended, programmatic control of the printing. The enhanced launch_printing_dialog() options are used in conjunction with the new APIs indicated above. Version 2.0, February 6, 2008 In Version 2.0, the following changes were made. An additional API, havelsdrive(), was added to detect the presence of LightScribe drives. Version 1.0, January 3, 2008 Initial version. Page 2 of 23

3 Contents Lightscribe Public Windows Software Development Kit Introduction Architecture and Usage of LightScribe Printing Components API Usage Scenarios Print Options Dialog Details Major Features of Print Options Dialog Printing Dialog Details Major Features of Printing Dialog Localization Help System Library Usage Library Footprint Linking/Library Loading Library Detection Library Versioning Strategy LightScribe Software Update Mechanism Application Installation Requirements Sample code LSPrintAPI Library API Definition launch_print_options_dialog launch_printing_dialog have_lightscribe_drive get_drive_count get_drive_path get_drive_display_name get_drive_status get_print_status abort_print Page 3 of 23

4 1 Introduction The goals of this Windows LightScribe Software Development Kit are to: Provide a short learning curve on the LightScribe interfaces with no need to understand the nuances of LightScribe technology. Simplify the development of the LightScribe portion of application code. Standardize the application user interface for LightScribe use. Retain the ability to introduce new features to the LightScribe System Software (LSS) without impacting existing applications. Eliminate complex licensing processes, enabling individual developers to develop LightScribe applications. Minimize test requirements for the LightScribe labeling functionality. Provide troubleshooting documentation on the LightScribe printing functionality. Support localized applications for most common languages. In a disc labeling application, three main pieces of functionality exist: 1. The Label Designer 2. The Print Options dialog 3. The Printing (or Print Progress) dialog. This SDK provides access to the 2 nd and 3 rd pieces of functionality. The actual components are distributed as part of the LightScribe System Software Version and onwards. The software components provide almost all of the standard functionality a LightScribe labeling application needs to support LightScribe printing. It provides a simple way for an application to be enabled for LightScribe labeling. 1.1 Architecture and Usage of LightScribe Printing Components Applications do not interact directly with the LightScribe Printing Components. Instead, the components are accessed via a C DLL. The LSPrintAPI dynamic link library is used to access and communicate with the LightScribe drives, get information about the drives, create the user interface components, send label printing jobs to the LightScribe drives, and monitor print job progress. The LSPrintAPI creates two main user interface components as standalone processes: LSPrintDialog.exe and LSPrintingDialog.exe. These LightScribe printing dialogs may be utilized to provide a standardized LightScribe user experience. 1.2 API Usage Scenarios The LSPrintAPI SDK provides a rich interface for application developers to use to print labels using LightScribe drives. Applications typically follow one of the following use models. Page 4 of 23

5 Standard Usage: In this usage model, the application launches the Print Options Dialog (using the launch_print_options_dialog API). This dialog box provides the user with options to initiate printing of a label to a LightScribe drive. Once the user selects the Print button on the dialog, the print will begin and the Printing Dialog will be displayed to provide monitoring of the print progress. Applications should, in general, only interact with the Print Options Dialog (using the launch_print_options_dialog API) rather than the Printing Dialog (using the launch_printing_dialog API). The Printing Dialog is available to support direct printing without requiring user interaction to select the print options. A sample application, ImageBurner2, is included in the SDK to illustrate this usage model. Programmatic Usage: In this usage model, the application gets the drive count and then iterates through the number of drives to get the path, name, and status of each drive. These values are then used to launch a print to a specific drive via the Printing Dialog (using the launch_printing_dialog API). By default the Printing Dialog will appear and pop-up dialogs will be displayed as necessary to resolve error conditions. The Printing Dialog can be minimized with the noshow command line option. The pop-up dialogs can be suppressed with the nooperator option. The application can then monitor the status of print jobs using theget_print_status() API. If necessary the application can abort a print in progress with theabort_print() API. A sample application, AutoPrint, is included in the SDK to illustrate this usage model. Command Line Usage: In general, using the library interface is the preferred approach. However, it is possible to run the underlying exe files directly from the command line or a script, Please be aware that future changes to these components may affect the ability to execute them from the command line. In this mode of use, the dialogs are launched directly and given command-line parameters. The command line options are the same as used by the LSPrintAPI library. Thelaunch_print_options_dialog function corresponds to LSPrintDialog.exe, and launch_printing_dialog function corresponds to LSPrintingDialog.exe. For example: LSPrintingDialog.exe --filename "C:/TestImage.bmp" --name "ASUS DRW- 1612BLT (F:)" --index 0 --quality best --path F --copies 1 -- media 1 --deleteimagefile 1 Page 5 of 23

6 1.3 Print Options Dialog Details The Print Options dialog is what the user traditionally sees when Print is selected in the labeling application. Below is a screenshot of the LightScribe Print Options dialog component Major Features of Print Options Dialog The drive enumeration and status and print preview operations are performed in separate threads, resulting in up-to-date information and a UI that is responsive during these time-consuming activities. LightScribe media is available in multiple colors; the print preview can be generated in the available colors to give a realistic impression of how the labeled disc will look if printed on a colored disc rather than the classic LightScribe disc. The print preview is rendered to give an approximate representation of the contrast level that will be provided with a given Contrast Level selection. A print time estimate is given to give an approximate representation of the time it will take to print the image. This time is computed using information about the drive s capabilities and the Contrast Level selection. Fully localized standard UI and user messaging. Developed with a full understanding of the nuances of the LightScribe technology and System Software. Page 6 of 23

7 1.4 Printing Dialog Details The Printing or Burn Progress dialog is what the user traditionally sees during printing. Below is a screenshot of the LightScribe Printing dialog component Major Features of Printing Dialog Simulated real-time graphical view of the print progress Fully localized standard UI and user messaging. Developed with a full understanding of the nuances of the LightScribe technology and System Software. 1.5 Localization The LightScribe Printing Components are localized into these languages: Page 7 of 23

8 Primary Language 3-LA LangID (dec) Arabic ARA 1025 Chinese Simplified CHS 2052 Chinese Traditional CHT 1028 Czech CSY 1029 Danish DAN 1030 Dutch NLD 1043 Finnish FIN 1035 French FRA 1036 German DEU 1031 Greek ELL 1032 Hebrew HEB 1037 Italian ITA 1040 Japanese JPN 1041 Korean KOR 1042 Norwegian NOR 1044 Polish PLK 1045 Portuguese PTB 1046 Portuguese PTG 2070 Russian RUS 1049 Slovak SKY 1051 Spanish ESN 1034 Swedish SVE 1053 Turkish TRK 1055 Page 8 of 23

9 The components are Microsoft Multilingual User Interface (MUI) enabled, so they will detect which display language to use. Because of this, if the OS is running in one language, but the user has set the Display Language to another language, the components may be running in a different language than the application if the application is not MUI enabled and thus is not reading the Display Language. 1.6 Help System The application s help content is not required to include detailed help relating to the LightScribe printing functionality, but a basic walkthrough on printing a LightScribe disc is recommended. Detailed help files on the Print Options and Printing Dialogs are HTML files located in %CommonProgramFiles%\LightScribe\Content\help\<Language TLA>, and the user can view these by clicking the Help button on the printing components. Page 9 of 23

10 2 Library Usage 2.1 Library Footprint The LightScribe Labeling Components Library consists of the following files: LSPrintAPI.dll dynamic link library LSPrintAPI.lib import library for linker LSPrintAPI.h header file with API LSPrintStatusCodes.h header file with print status codes 2.2 Linking/Library Loading Applications can use either build-time or run-time linking. To use build-time (or implicit) linking, add the LSPrintAPI.lib import library to your project linker settings and #include LSPrintAPI.h to your code. In order for this to work, the dll needs to be in the search path for loading dlls. This requires extra effort to read the location from the registry and add it to the path, so it is not the recommended approach. To use run-time (or explicit) linking, the library needs to be loaded with the Windows API LoadLibrary. Additionally, the functions may need to be resolved with the Windows API GetProcAddress passing in the function s name. This is the method used in the sample application. It also uses the /DELAYLOAD linker option to prevent Windows from trying to load the LSPrintAPI library upon startup of the application. When using this method, errors such as Library Not Found can be handled gracefully at runtime. Also, the library can be loaded only when needed and unloaded when not needed. This is demonstrated in the ImageBurner2 sample code function LSSDKHelper::LS_LoadLibrary. Note that the sample code is not production-ready code. 2.3 Library Detection At runtime startup, applications should check (stat) for the presence of the LSPrintAPI library. The absolute path and name of this dll is stored in the registry key HKLM\SOFTWARE\LightScribe\LSPrintAPI. This key should be read and the application should check for the existence of the filename it provides. This is demonstrated in the ImageBurner2 sample code function LSSDKHelper::LS_GetLibraryLocation. Note that the sample code is not productionready code. If this key is not present or the location it specifies cannot be loaded, a localized message should be display to inform the user that they need to install the latest version of the Page 10 of 23

11 LightScribe System Software with a button or link to Library Versioning Strategy For most Windows API functions, only the names are preserved across different Windows releases; the ordinals are subject to change. So, one cannot reliably import Windows API functions by their ordinals. Likewise, in this API, only the function names are guaranteed to be preserved across releases. Because of this, linking/resolving should be done using the function names rather than the ordinals. This will ensure backward compatibility of the library. NOTE: Applications should never install their own version of LSPrintAPI.dll (i.e. in the application s folder); instead they must use the version that is part of the LightScribe System Software using the Library Detection technique described above. 2.5 LightScribe Software Update Mechanism LightScribe technology is continually undergoing improvements and extensions, and it is important that the software on the user s system remains up-to-date. The updating of the LightScribe Software is normally handled by the LightScribe Print Options component. The application will only prompt for an update when one of the functions returns an error, or a problem occurs when loading the library. In this case, the application should direct the user to Application Installation Requirements The application installer should check for a version or greater LightScribe System Software at install time. The full LightScribe System Software version number is stored in the registry keyhklm/software/lightscribe/update/currentversion with a REG_SZ value. 2.7 Sample code The SDK includes two sample applications, ImageBurner2 and AutoPrint. ImageBurner2 illustrates using the API for the standard usage scenario (See Section 1.2). The AutoPrint sample application illustrates using the API for the programmatic usage scenario. These are not production quality code, but they show the basic function calls required to use the library for the two scenarios. The ImageBurner2 sample application code can be built using the ImageBurner2 Visual Studio 2005 project (ImageBurner2SDK.vcproj). The AutoPrint sample application code can be built using the AutoPrint Visual Studio project (AutoPrintSDK.vcproj). Also included is the LightScribeSDK folder which contains the files needed to use the API. These files must be copied to a suitable location for the application s build system. Note: Because the LightScribe System Software components are not included in the SDK, the developer must have the LightScribe System Software installed in order to test the application. Page 11 of 23

12 3 LSPrintAPI Library 3.1 API Definition Below is an excerpt from LSPrintAPI.h showing the API. The remainder of this section describes each API in detail. /** API entry point for launching the Print Options dialog. poptions The string consists of a list of options, each option is prefixed with "--".\n * The options string can have the following parameters:\n * "--version" or "--v" : Displays the version dialog\n * "--help" or "--h" : Display dialog with description of the API for the developer (not intended for end-user)\n * "--filename" or "--f" : Source image file name (string)\n * "--deleteimagefile" or "--d" : Automatically delete source file (boolean, default value = "false" ("0"))\n 0 = Success, other error codes as per winerror.h */ LSPRINTAPI_EXPORT int launch_print_options_dialog(const wchar_t* poptions); /** API entry point for launching the Printing dialog. poptions The string consists of a list of options, each option is prefixed with "--".\n * The options string can have the following parameters:\n * "--version" or "--v" : Displays the version dialog\n * "--help" or "--h" : Display dialog with description of the API for the developer (not intended for end-user)\n * "--filename" or "--f" : Image file name (string)\n * "--index" or "--i", : Drive index (unsigned int)\n * "--name" or "--n" : Drive name (string)\n * "--quality" or "--q" : Label quality (string - "draft"/"normal"/"best", default value = "normal")\n * "--path" : Drive path (string)\n * "--copies" or "--c" : Number of copies (unsigned int, default value = "1")\n * "--targetfile" or " t" : Print to file target file name (string)\n * "--media" or "--m" : Media already detected (bool, default value = "1")\n * "--deleteimagefile" or "--d" : Automatically delete source file (bool, default value = "false" ("0"))\n * "--autoclose" or "--a" : Close dialog when print completes (bool, default value = "false" ("0"))\n * "--noshow" or "--s" : Hide dialog during printing (bool, default value = "false" ("0"))\n * "--autoeject" or "--e" : Automatically open tray when print completes (bool, default value = "true" ("1"))\n * "--usegeneric" or "--g" : Don't prompt if generic printing is intended (bool, default value = "false" ("0"))\n * "--nooperator" or "--o" : Unattended mode of operation with no user interface interactions (bool, default value = "false" ("0"))\n 0 = Success, other error codes as per winerror.h */ LSPRINTAPI_EXPORT int launch_printing_dialog(const wchar_t* poptions); /** These constant definitions are used by the PrintInfo related API's **/ const int LS_SUCCESS = 0; /* success */ const int LS_FAILURE = 1; /* unknown failure */ const int LS_INVALID_DRIVE_INDEX = 2; /* Drive index number is not within the range of valid drives */ const int LS_INVALID_ARRAY_SIZE = 3; /* Array size specified is too small for return value */ Page 12 of 23

13 /** API entry point for testing if there is a LightScribe drive on the system. * Note: This requires the LightScribe System Software to be installed. rhavedrive Output parameter: true = 1 or false = 0 LS_SUCCESS or other error codes as per LSPrintAPI.h */ LSPRINTAPI_EXPORT int have_lightscribe_drive(bool& rhavedrive); /** API entry point to get the number of LightScribe drive on the system. * Note: This requires the LightScribe System Software to be installed. rdrivecount Output parameter: Number of drives LS_SUCCESS or other error codes as per LSPrintAPI.h **/ LSPRINTAPI_EXPORT int get_drive_count(unsigned int& rdrivecount); /** API entry point to get the path name of a LightScribe drive. E.g. "D", "E"... * Note: This requires the LightScribe System Software to be installed. driveindex Index of drive. Drives are numbered from 0 to drivecount - 1. pdrivepath Output parameter: Name of the drive path drivepathsize Allocated size of the drive path array. LS_SUCCESS or other error codes as per LSPrintAPI.h **/ LSPRINTAPI_EXPORT int get_drive_path(const unsigned int driveindex, wchar_t* pdrivepath, const unsigned int drivepathsize); /** API entry point to get the name of a LightScribe drive. * Note: This requires the LightScribe System Software to be installed. driveindex Index of drive. Drives are numbered from 0 to drivecount - 1. pdrivedisplayname Output parameter: Display name of the drive drivedisplaynamesize The length, in number of characters, already allocated to pdrivedisplayname code: LS_SUCCESS or other error codes as per LSPrintAPI.h **/ LSPRINTAPI_EXPORT int get_drive_display_name(const unsigned int driveindex, wchar_t* pdrivedisplayname, const unsigned int drivedisplaynamesize); /** API entry point to get the current status of a LightScribe drive. * Note: This requires the LightScribe System Software to be installed. driveindex index of drive. Drives are numbered from 0 to drivecount - 1. rdrivestatus Output parameter: Current status of the drive. code: LS_SUCCESS or other error codes as per LSPrintAPI.h **/ enum LSDriveStatus {LS_DRIVE_STATUS_AVAILABLE, LS_DRIVE_STATUS_ERROR, LS_DRIVE_STATUS_UPDATE, LS_DRIVE_STATUS_BUSY, LS_DRIVE_STATUS_UNKNOWN }; LSPRINTAPI_EXPORT int get_drive_status(const unsigned int driveindex, LSDriveStatus& rdrivestatus); /** API entry point to get the current print status. * Note: This requires the LightScribe System Software to be installed. driveindex Index of drive. Drives are numbered from 0 to drivecount - 1. rprintstatuscode Output parameter: Print status code. rcurrentcopyno Output parameter: Number of the current copy being printed. rtotalnoofcopies Output parameter: Total number of copies to print. rpercentcomplete Output parameter: Percentage of the print job completed on the given drive. restimatedtimeremainingsecs Output parameter: Estimated time remaining in seconds. pprintstatusstring Output parameter: Print status string. printstatusstringsize: Allocated size of the print status array. Page 13 of 23

14 pestimatedtimeremainingstring Output parameter: Estimated time remaining string. estimatedtimeremainingstringsize: Allocated size of the estimated time remaining array. code: LS_SUCCESS or other error codes as per LSPrintAPI.h **/ LSPRINTAPI_EXPORT int get_print_status(const unsigned int driveindex, LSPrintStatusCode& rprintstatuscode, unsigned int& rcurrentcopyno, unsigned int& rtotalnoofcopies, unsigned int& rpercentcomplete, unsigned int& restimatedtimeremainingsecs, wchar_t* pprintstatusstring, const unsigned int printstatusstringsize, wchar_t* pestimatedtimeremainingstring, const unsigned int estimatedtimeremainingstringsize); /** API entry point to request the current print be aborted. * Note: This requires the LightScribe System Software to be installed. * Note: The current implementation of this function returns after requesting the * print be aborted. It does not wait for the abort to complete. The application * should continue to monitor the print status with "get_print_status()" until * a canceled status is returned from that function. * This behavior may change in a future release. driveindex index of drive. Drives are numbered from 0 to drivecount - 1. code: LS_SUCCESS or other error codes as per LSPrintAPI.h **/ LSPRINTAPI_EXPORT int abort_print(const unsigned int driveindex); Page 14 of 23

15 3.2 launch_print_options_dialog Definition: int launch_print_options_dialog(const wchar_t* poptions); Input Parameter(s): ThepOptions argument is a C string with classic command line style parameters. Each option has a long version and a short version. The long versions are preceded with a double dash, --", and the short versions by a single dash, -. Some options require a value, while others have no associated value but are parsed for their presence or nonpresence only. version Using this (optional) option will display a dialog with the version number of the component. This is intended to be used by developers only; i.e. not in application code. This parameter has no value associated with it. help - Using this (optional) parameter will display a dialog with the command parameters described. This is intended to be used by developers only. ; i.e. not in application code. This parameter has no value associated with it. deleteimagefile This (optional) parameter allows the client to either keep or hand-off ownership of the source image file. This is useful for the case where a temporary bmp file was created by the application for passing the LightScribe Print Component. In this case, the LightScribe Print Component would know it should delete the source file and prevent needlessly wasting storage space with the temporary file. When using "-d 0" it is important that the application does not delete the file from underneath the printing component. Hence, the recommended approach is for the application to use "-d 1" as a command line argument. This will transfer ownership of the file to the printing component, which will delete it when it is finished. In combination with -d 1, it is recommended that the bitmap file passed in be a uniquely named file stored in the user s temp folder (usually C:\Documents and Settings\<user name>\local Settings\Temp). This is demonstrated in the ImageBurner2 sample code function CBitmapView::OnLightScribePrint(). This parameter has a boolean value associated with it. The default value is 0. filename This (required) parameter is used to specify the filename of the source image that is to be labeled. It should be a full path to the source bitmap. This parameter has a string value associated with it. There is no default value. Output Parameter(s): None Page 15 of 23

16 Return Codes: The return codes for this API are the standard Windows error codes defined in the Platform SDK file winerror.h. Therefore a return code of 0 (ERROR_SUCCESS) is returned upon a successful function execution. 3.3 launch_printing_dialog Definition: int launch_printing_dialog(const wchar_t* poptions); Input Parameter(s): ThepOptions argument is a C string with classic command line style parameters. Each option has a long version and a short version. The long versions are preceded with an double dash, --", and the short versions by a single dash, -. Some options require a value, while others have no associated value but are parsed for their presence or nonpresence only. version Using this (optional) option will display a dialog with the version number of the component. This is intended to be used by developers only; i.e. not in application code. This parameter has no value associated with it. help - Using this (optional) parameter will display a dialog with the command parameters described. This is intended to be used by developers only. ; i.e. not in application code. This parameter has no value associated with it. deleteimagefile This (optional) parameter allows the client to either keep or hand-off ownership of the source image file. This is useful for the case where a temporary bmp file was created by the application for passing the LightScribe Print Component. In this case, the LightScribe Print Component would know it should delete the source file and prevent needlessly wasting storage space with the temporary file. When using "-d 0" it is important that the application does not delete the file from underneath the printing component. Hence, the recommended approach is for the application to use "-d 1" as a command line argument. This will transfer ownership of the file to the printing component, which will delete it when it is finished. In combination with -d 1, it is recommended that the bitmap file passed in should be a uniquely named file stored in the user s temp folder (usually C:\Documents and Settings\<user name>\local Settings\Temp). This is demonstrated in the ImageBurner2 sample code function -CBitmapView::OnLightScribePrint(). This parameter has a boolean value associated with it. The default value is 0. filename This (required) parameter is used to specify the filename of the source image that is to be labeled. It should be a full path to the source bitmap. It is recommended that the bitmap file passed in should be a uniquely named file stored in the user s temp Page 16 of 23

17 folder (usually C:\Documents and Settings\<user name>\local Settings\Temp). This would be used in combination with the deleteimagefile parameter. We also recommend that the file s name has the prefix ls_. This parameter has a string value associated with it. There is no default value. index This (required) parameter is used to select drive to print on. It is a zero-based logical LightScribe drive number. The numbers are assigned in alphabetical order of the drive letter. i.e. if there are 3 LightScribe enabled drives with drive letters E, G & K, they would have indexes 0, 1 & 2 respectively. This parameter has an unsigned integer value associated with it. The default value is 0. name This (required) parameter specifies the drive name. It is used only as a display string in the GUI, not as the drive selection. This parameter has a string value associated with it. There is no default value. quality This (required) parameter specifies the contrast level setting to use in this print. This parameter has a string value associated with it. The default value is best. Other possible values are normal and draft. path This (required) parameter specifies the path of the selected logical LightScribe drive. On Windows should be a drive letter better A to Z. The drive path must match the actual path of the selected logical LightScribe drive. i.e. if there are 3 LightScribe enabled drives, E, F & K, they are normally drive indexes 0, 1 & 2 respectively. So, in this case, using the parameters --index 0 --path E would be correct; whereas --index 1 --path E would be an incorrect combination and generate an error. This parameter has a string value associated with it. There is no default value. copies This (optional) parameter specifies how many copies of a disc to print. This parameter has an unsigned integer value associated with it. The default value is 1. targetfile This (optional) parameter can be used to specify an output file for the LightScribe System Software to create. Using this parameter will invoke a print to file mode. This is currently for test purposes only. This parameter has a string value associated with it. There is no default value. media This (optional) parameter specifies whether media is known to be in the tray already. If this value is 0, then the tray will be ejected and the user will be prompted to insert media (even if there actually is LightScribe media loaded). If the value is 1, the software will attempt to print to the drive (closing the tray if necessary). This parameter has a boolean value associated with it. The default value is 1. autoclose This (optional) parameter specifies that the printing dialog shall automatically close without user interaction. The default value is 0. Page 17 of 23

18 noshow This (optional) parameter specifies that the printing dialog shall operate in the background (minimized). Any pop-up dialogs will be presented unless suppressed with the nooperator option. The default value is 0. autoeject This (optional) parameter specifies that the tray should be opened when the print completes. If set to false ( 0 ) the tray will remain closed when the print completes. The default value is true ( 1 ). usegeneric This (optional) parameter specifies that generic printing values should be used if optimal printing values are not supported. If optimal printing values are not supported for the target drive the printing dialog will, by default, prompt the user to choose to use either generic printing or update the system software. This parameter can be used to prevent the prompt and inform the printing dialog to use generic printing values in this situation. Printing will continue without prompting the user. The default value is false ( 0 ). nooperator This (optional) parameter indicates there is no operator present to respond to GUI dialogs. All pop-up dialogs will be suppressed. If an error occurs that would normally cause a dialog to be presented, the print will terminate and an error code will be returned. The default value is false ( 0 ). Output Parameter(s): None Return Codes: The return codes for this API are the standard Windows error codes defined in the Platform SDK file winerror.h. Therefore a return code of 0 (ERROR_SUCCESS) is returned upon a successful function execution. 3.4 have_lightscribe_drive Definition: int have_lightscribe_drive(bool &rhavedrive); Input Parameter(s): None Page 18 of 23

19 Output Parameter(s): rhavedrive This parameter returns the value true if there is a LightScribe drive on the system and false otherwise. Return Codes: This function returns a LightScribe Error Code as described in LSPrintAPI.h. On success, the function returns LS_SUCCESS. 3.5 get_drive_count Definition: int get_drive_count(unsigned int &rdrivecount) Input Parameter(s): None Output Parameter(s): rdrivecount The number of LightScribe drives in the system. The LightScribe drives are numbered from 0 to drivecount -1. Return Codes: This function returns a LightScribe Error Code as described in LSPrintAPI.h. On success, the function returns LS_SUCCESS. 3.6 get_drive_path Definition: int get_drive_path(const unsigned int driveindex, wchar_t *pdrivepath, const unsigned int drivepathsize) Input Parameter(s): driveindex The index number of a LightScribe drive. LightScribe drives are numbered from 0 to drivecount 1. drivepathsize The length, in number of characters, already allocated to pdrivepath. Page 19 of 23

20 Output Parameter(s): pdrivepath The path name of the LightScribe drive with the given index number. The path name is assigned by the operating system. Return Codes: This function returns a LightScribe Error Code as described in LSPrintAPI.h. On success, the function returns LS_SUCCESS. 3.7 get_drive_display_name Definition: int get_drive_display_name(const unsigned int driveindex, wchar_t *pdrivedisplayname, const unsigned int displaynamesize) Input Parameter(s): driveindex The index number of a LightScribe drive. LightScribe drives are numbered from 0 to drivecount 1. displaynamesize The length, in number of characters, already allocated to pdrivedisplayname. Output Parameter(s): pdrivedisplayname The display name of the LightScribe drive with the given index number. Return Codes: This function returns a LightScribe Error Code as described in LSPrintAPI.h. On success, the function returns LS_SUCCESS. 3.8 get_drive_status Definition: enum LSDriveStatus {LS_DRIVE_STATUS_AVAILABLE, LS_DRIVE_STATUS_ERROR, LS_DRIVE_STATUS_UPDATE, LS_DRIVE_STATUS_BUSY, LS_DRIVE_STATUS_UNKNOWN }; int get_drive_status(const unsigned int driveindex, LSDriveStatus& rlsdrivestatus) Page 20 of 23

21 Input Parameter(s): driveindex The index number of a LightScribe drive. LightScribe drives are numbered from 0 to drivecount 1. Output Parameter(s): rdrivestatus One of the LSDriveStatus enumerated values. Return Codes: This function returns a LightScribe Error Code as described in LSPrintAPI.h. On success, the function returns LS_SUCCESS. 3.9 get_print_status Definition: enum LSPrintStatusCode {LS_PRINT_STATUS_UNAVAILABLE, LS_PRINT_STATUS_STARTING, LS_PRINT_STATUS_PREPARING, LS_PRINT_STATUS_DETECTING, LS_PRINT_STATUS_DRIVE_START_UP, LS_PRINT_STATUS_PRINTING, LS_PRINT_STATUS_COMPLETE, LS_PRINT_STATUS_CANCELED, LS_PRINT_STATUS_CANCELING, LS_PRINT_STATUS_GENERIC_ERROR }; int get_print_status(const unsigned int driveindex, LSPrintStatusCode& rprintstatuscode, unsigned int& rcurrentcopyno, unsigned int& rtotalnoofcopies, unsigned int& rpercentcomplete, unsigned int& restimatedtimeremainingsecs, wchar_t* pprintstatusstring, const unsigned int printstatusstringsize, wchar_t* pestimatedtimeremainingstring, const unsigned int estimatedtimeremainingstringsize) Input Parameter(s): driveindex The index number of a LightScribe drive. LightScribe drives are numbered from 0 to drivecount 1. printstatusstringsize - The length, in number of characters, already allocated to rprintstatusstring. estimatedtimeremainingstringsize - The length, in number of characters, already allocated to restimatedtimeremaining. Page 21 of 23

22 Output Parameter(s): rprintstatuscode One of the enumerated values from LSPrintStatusCode.h. This describes the current status of the print. rcurrentcopyno The current copy number being printed. rtotalnoofcopies The total number of copies requested to be printed. rpercentcomplete The percentage of the print completed on the current drive. restimatedtimeremainingsecs The estimated number of seconds remaining until the print completes. pprintstatusstring A displayable string indicating the current status of the print. pestimatedtimeremainingstring A displayable string indicating the estimated time remaining in minutes until the print completes. Return Codes: This function returns a LightScribe Error Code as described in LSPrintAPI.h. On success, the function returns LS_SUCCESS abort_print Note: The current implementation of this function returns after requesting the print be aborted. It does not wait for the abort to complete. The application should continue to monitor the print status with get_print_status()" until a canceled status is returned from that function. This behavior may change in a future release. Definition: int abort_print(const unsigned int driveindex) Input Parameter(s): driveindex The index number of a LightScribe drive. LightScribe drives are numbered from 0 to drivecount 1. Output Parameter(s): None. Page 22 of 23

23 Return Codes: This function returns a LightScribe Error Code as described in LSPrintAPI.h. On success, the function returns LS_SUCCESS. Page 23 of 23

Xapity Current Activity Administration Guide.

Xapity Current Activity Administration Guide. Xapity Current Activity Administration Guide www.xapity.com Document Version 1.0 October 2016 This document contains information that may change without notice. While every effort has been made to ensure

More information

Xapity Attachments Administration Guide.

Xapity Attachments Administration Guide. Xapity Attachments Administration Guide www.xapity.com Document Version 1.0 Jab 2017 This document contains information that may change without notice. While every effort has been made to ensure that the

More information

Xapity Notification Activity Administration Guide.

Xapity Notification Activity Administration Guide. Xapity Notification Activity Administration Guide www.xapity.com Document Version 1.0 October 2016 This document contains information that may change without notice. While every effort has been made to

More information

Xapity PowerShell Activity Administration Guide.

Xapity PowerShell Activity Administration Guide. Xapity PowerShell Activity Administration Guide www.xapity.com Document Version 1.0 August 2016 This document contains information that may change without notice. While every effort has been made to ensure

More information

USB Link Adapter. User s Manual

USB Link Adapter. User s Manual USB Link Adapter User s Manual Safety Instructions Always read the safety instructions carefully Keep this User s Manual for future reference Keep this equipment away from humidity If any of the following

More information

Reinstalling a Cisco Unity Express Image Using the Boothelper

Reinstalling a Cisco Unity Express Image Using the Boothelper Reinstalling a Cisco Unity Express Image Using the Boothelper Last Updated: October 5, 2011 This chapter describes the procedures for installing Cisco Unity Express software using the boothelper. Use the

More information

NVIDIA Release 197 Tesla Driver for Windows

NVIDIA Release 197 Tesla Driver for Windows NVIDIA Release 197 Tesla Driver for Windows RN-05247-195v19768 April 2010 Release Notes 01 NVIDIA TESLA DRIVER FOR WINDOWS This edition of Release 197 Notes describes the Release 197 Tesla Drivers for

More information

Installing Cisco Unity Express 7.1 Software on the ISM-SRE-300-K9 Services Ready Engine (SRE)

Installing Cisco Unity Express 7.1 Software on the ISM-SRE-300-K9 Services Ready Engine (SRE) Installing Cisco Unity Express 7.1 Software on the ISM-SRE-300-K9 Services Ready Engine (SRE) Last Updated: December 10, 2010 This chapter describes an alternative procedure for installing Cisco Unity

More information

Upgrading to Cisco Unity Express 8.6

Upgrading to Cisco Unity Express 8.6 Upgrading to Cisco Unity Express 8.6 Last Updated: October 5, 2011 This chapter describes procedures for upgrading to Cisco Unity Express 8.6 software. This chapter includes: Preparing for Your Upgrade,

More information

Reinstalling a Cisco Unity Express Image Using the Boothelper

Reinstalling a Cisco Unity Express Image Using the Boothelper Reinstalling a Cisco Unity Express Image Using the Boothelper Last Updated: December 10, 2010 This chapter describes the procedures for installing Cisco Unity Express software using the boothelper. Note

More information

Reinstalling a Cisco Unity Express Image Using the Boothelper

Reinstalling a Cisco Unity Express Image Using the Boothelper Reinstalling a Cisco Unity Express Image Using the Boothelper Last Updated: December 10, 2010 This chapter describes the procedures for installing Cisco Unity Express software using the boothelper. Note

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

Intel USB 3.0 extensible Host Controller Driver

Intel USB 3.0 extensible Host Controller Driver Intel USB 3.0 extensible Host Controller Driver Release Notes (5.0.4.43) Unified driver September 2018 Revision 1.2 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

Deployment Guide Gridpro AB Rev: Published: March 2014

Deployment Guide Gridpro AB Rev: Published: March 2014 Deployment Guide Gridpro AB Rev: 2.5.5197 Published: March 2014 Contents Prerequisites... 4 Windows Server 2008/2008 R2... 5 Server Configuration... 5 Microsoft.NET Framework 4 Installation... 8 Windows

More information

Application Note. This document contains information on the following:

Application Note. This document contains information on the following: Document Number: IX_APP00115 File Name: InteractX Under the Hood.doc Date: January 27, 2003 Product: InteractX Designer Application Note Associated Project: Related Documents: KEYWORDS While precautions

More information

Installing Cisco Unity Express 8.0 Software

Installing Cisco Unity Express 8.0 Software Last Updated: June 2, 2010 After ensuring that the prerequisites described in the Prerequisites for Installing Cisco Unity Express Software section on page 9 are completed, the Cisco Unity Express software

More information

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.0 February 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.0 Introduction The LiveEngage platform aims to provide

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

Upgrading Cisco Unity Express

Upgrading Cisco Unity Express Upgrading Cisco Unity Express Last Updated: December 10, 2010 This chapter describes procedures for upgrading to Cisco Unity Express 7.0 software. Use one of two upgrade procedures depending on whether

More information

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar.

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar. 1. Survey Authoring Section 1 of this User Guide provides step-by-step instructions on how to author your survey. Surveys can be created using questions and response choices you develop; copying content

More information

Beyond 20/20. Browser - English. Version 7.0, SP3

Beyond 20/20. Browser - English. Version 7.0, SP3 Beyond 20/20 Browser - English Version 7.0, SP3 Notice of Copyright Beyond 20/20 Desktop Browser Version 7.0, SP3 Copyright 1992-2006 Beyond 20/20 Inc. All rights reserved. This document forms part of

More information

Date : Jun 14, Ver. 01. InterVideo InstantON. User Manual

Date : Jun 14, Ver. 01. InterVideo InstantON. User Manual Ver. 01 Date : Jun 14, 2005 InterVideo InstantON User Manual 1 Content 1. Install/Repair/Remove...5 1.1. Install InterVideo InstantON...5 1.1.1. Run the InstantON Install file under Windows...5 1.1.2.

More information

You can install the client on the following operating systems:

You can install the client on the following operating systems: Review the options for installation and learn about different methods for installing Cisco UC Integration for Microsoft Lync. Understand the requirements for successful deployments before you start the

More information

HP Easy Printer Care. System Administrator's Guide

HP Easy Printer Care. System Administrator's Guide HP Easy Printer Care System Administrator's Guide HP Easy Printer Care System Administrator's Guide Copyright and license 2006 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation

More information

Dell SupportAssist for PCs. User's Guide for Windows 10 in S Mode

Dell SupportAssist for PCs. User's Guide for Windows 10 in S Mode Dell SupportAssist for PCs User's Guide for Windows 10 in S Mode Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

You can install the client on the following operating systems: Microsoft Windows 7, 32 bit and 64 bit

You can install the client on the following operating systems: Microsoft Windows 7, 32 bit and 64 bit Review the options for installation and learn about different methods for installing Cisco UC Integration for Microsoft Lync. Understand the requirements for successful deployments before you start the

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

Release Notes for KYOCERA Net Viewer

Release Notes for KYOCERA Net Viewer Page 1 of 5 Release Notes for KYOCERA Net Viewer Version 5.3 February 28, 2013 Installation Notes It is recommended to close all running applications before installing or modifying KYOCERA Net Viewer or

More information

Oracle Financial Services Asset Liability Management Applications Pack

Oracle Financial Services Asset Liability Management Applications Pack Oracle Financial Services Asset Liability Management Applications Pack Language Pack Installation & Configuration Guide Version 8.0.1.0.0 DOCUMENT CONTROL Version Number Revision Date Changes Done Version

More information

Product Library 2.0 EUR. DVD Contents. Release Notes August 10th, Windows 2000 Windows Server Windows Vista Windows 7

Product Library 2.0 EUR. DVD Contents. Release Notes August 10th, Windows 2000 Windows Server Windows Vista Windows 7 1 of 7 Product Library 2.0 EUR Release Notes August 10th, 2011 DVD Contents Printer Drivers Version 2000 Server 2000 XP Vista 7 Server 2003 R2 KX DRIVER (Generic) 5.1.1405e2 KX DRIVER 5.2.1327d KX (XPS)

More information

Dell SupportAssist for PCs and Tablets. User s Guide

Dell SupportAssist for PCs and Tablets. User s Guide Dell SupportAssist for PCs and Tablets User s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

HP Enterprise Collaboration

HP Enterprise Collaboration HP Enterprise Collaboration For the Windows operating system Software Version: 1.1 Support Matrix Document Release Date: August 2012 Software Release Date: August 2012 Support Matrix Legal Notices Warranty

More information

Product Library 1.0 EUR CD Contents Windows Windows Windows 2000 Windows Windows Vista Server 2008 Printer Drivers Version Windows Server

Product Library 1.0 EUR CD Contents Windows Windows Windows 2000 Windows Windows Vista Server 2008 Printer Drivers Version Windows Server Product Library 1.0 EUR Release Notes September 3rd, 2012 CD Contents Printer Drivers Version 2000 Server 2000 XP Vista 7 Server 2003 Server 2008 Server 2008 R2 KX DRIVER (Generic) 5.1.1405e2 KX DRIVER

More information

12 Steps to Software Translation Success

12 Steps to Software Translation Success 12 Steps to Software Translation Success www.globalizationpartners.com 12 Steps to Software Translation Success Copyright 2016-2017 Globalization Partners International. All rights reserved. This ebook

More information

Oracle Access Manager

Oracle Access Manager Oracle Access Manager Addendum to Release Notes 10g (10.1.4.0.1) January 2007 This document is an addendum to the Release Notes for Oracle Access Manager 10g (10.1.4.0.1). It contains the following sections:

More information

Google Search Appliance

Google Search Appliance Google Search Appliance Search Appliance Internationalization Google Search Appliance software version 7.2 and later Google, Inc. 1600 Amphitheatre Parkway Mountain View, CA 94043 www.google.com GSA-INTL_200.01

More information

IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009)

IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009) IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009) Installation & Setup Review all instructions before starting the install of DB2 Web Query. Complete these steps

More information

HP Universal Print Driver. System Administrator s Guide

HP Universal Print Driver. System Administrator s Guide HP Universal Print Driver System Administrator s Guide HP Universal Print Driver System Administrator's Guide Copyright and license 2006 Copyright Hewlett-Packard Development Company, L.P. Reproduction,

More information

Getting Started with BarTender

Getting Started with BarTender Getting Started with BarTender MANUAL Contents Getting Started with BarTender 3 Installation 4 Choosing What to Install 4 Automation Editions (Automation and Enterprise Automation) 4 Installing BarTender

More information

QUADRO WORKSTATION APPLICATION NVIDIA QuadroView Release Notes. Based on Version

QUADRO WORKSTATION APPLICATION NVIDIA QuadroView Release Notes. Based on Version QUADRO WORKSTATION APPLICATION NVIDIA QuadroView Release Notes Based on Version 2.04.08 NVIDIA Corporation October 9, 2001 Published by NVIDIA Corporation, Inc. 2701 San Tomas Expressway Santa Clara, CA

More information

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( )

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( ) Hik-Connect Client Software V3.1.0 0828(Android) V3.1.0 170830(iOS) Release Notes (2017-09-07) Hik-Connect Version 3.1.0: Optimize Login Page Hik-Connect account and email address are displayed default,

More information

SAS Web Infrastructure Kit 1.0. Overview, Second Edition

SAS Web Infrastructure Kit 1.0. Overview, Second Edition SAS Web Infrastructure Kit 1.0 Overview, Second Edition The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Infrastructure Kit 1.0: Overview, Second Edition.

More information

Filr 3.3 Desktop Application Guide for Linux. December 2017

Filr 3.3 Desktop Application Guide for Linux. December 2017 Filr 3.3 Desktop Application Guide for Linux December 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

More information

Product Library 4.0 EUR. CD Contents. Release Notes July 1st, Windows Vista. Windows. Windows. Server Windows 2000.

Product Library 4.0 EUR. CD Contents. Release Notes July 1st, Windows Vista. Windows. Windows. Server Windows 2000. 1 of 7 Product Library 4.0 EUR Release Notes July 1st, 2010 CD Contents Printer s Version 98, Me, NT4.0 2000 XP Vista 7 Server 2000 Server 2003 Server 2008 Server 2008 R2 KX DRIVER 5.1.1705 KX DRIVER 4.2.1409b

More information

KYOCERA Quick Scan v1.0

KYOCERA Quick Scan v1.0 KYOCERA Quick Scan v1.0 Software Information PC Name Version 0731 July 31, 2018 KYOCERA Document Solutions Inc. Product Planning Division 1 Table of Contents 1. Overview... 4 1.1. Background... 4 1.2.

More information

Silent Install. The World's Leading Software for Label, Barcode, RFID & Card Printing

Silent Install. The World's Leading Software for Label, Barcode, RFID & Card Printing The World's Leading Software for Label, Barcode, RFID & Card Printing Silent Install Installing BarTender and Seagull License Server using Command Lines Contents Overview 3 Performing a Silent Install

More information

Release 270 Tesla Driver for Windows - Version

Release 270 Tesla Driver for Windows - Version Release 270 Tesla Driver for Windows - Version 270.90 RN-05247-270-90v01 June 2011 Release Notes TABLE OF CONTENTS 1 NVIDIA Tesla Driver for Windows... 1 About the Tesla Driver... 1 Running CUDA Applications...

More information

Portal Administrator guide

Portal Administrator guide Portal Administrator guide Admin Guide 21 March 2018 Contents About your Portal admin account 3 Your settings 3 User email notifications 3 Calling to telephone networks 3 Edit your organization's account

More information

SAP Crystal Reports 2013 Product Availability Matrix (PAM)

SAP Crystal Reports 2013 Product Availability Matrix (PAM) SAP Crystal Reports 2013 Product Availability Matrix (PAM) Created: May 10, 2012 Updated: Feb 22, 2018 Disclaimer: This document is subject to change and may be changed by SAP at any time without notice.

More information

Ivanti Patch for Windows Servers 9.3 Standard/Advanced Release Notes. Overview. Documentation

Ivanti Patch for Windows Servers 9.3 Standard/Advanced Release Notes. Overview. Documentation Ivanti Patch for Windows Servers 9.3 Standard/Advanced Release Notes Overview Documentation System Requirements Major New Features Minor Features and Enhancements Deprecated Features Resolved Issues Overview

More information

Installing Cisco Unity Express 8.0 Software on Services Ready Engine (SRE) Modules

Installing Cisco Unity Express 8.0 Software on Services Ready Engine (SRE) Modules Installing Cisco Unity Express 8.0 Software on Services Ready Engine (SRE) Modules Last Updated: June 2, 2010 This chapter describes the procedure f installing Cisco Unity Express software on the Services

More information

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao American Philatelic Society Translation Committee Annual Report 2012 Prepared by Bobby Liao - 1 - Table of Contents: 1. Executive Summary 2. Translation Committee Activities Summary July 2011 June 2012

More information

Time&Attendance file export

Time&Attendance file export Table of Contents 1- INTRODUCTION 3 2- REQUIREMENTS 3 3- THE TA SCREEN 3 3.1 THE FILTERS TAB 5 3.1.1 Last X days 5 3.1.2 From/To 5 3.1.3 Export all records 5 3.1.4 Only first and Last pass 5 3.1.5 Working

More information

ThinPrint RDP Engine

ThinPrint RDP Engine ThinPrint RDP Engine Print management for Remote Desktop Connections to Microsoft Terminal Servers (version 8.6) Manual Cortado AG Alt-Moabit 91 a/b 10559 Berlin Germany/ Alemania Cortado, Inc. 7600 Grandview

More information

WORKSTATION APPLICATION NVIDIA POWERdraft Release Notes. Software Version 15.06

WORKSTATION APPLICATION NVIDIA POWERdraft Release Notes. Software Version 15.06 WORKSTATION APPLICATION NVIDIA POWERdraft Release Notes Software Version 15.06 NVIDIA Corporation DECEMBER 2002 Published by NVIDIA Corporation 2701 San Tomas Expressway Santa Clara, CA 95050 Copyright

More information

EBSCOhost User Guide Searching. Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features. support.ebsco.

EBSCOhost User Guide Searching. Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features. support.ebsco. EBSCOhost User Guide Searching Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features Table of Contents What is EBSCOhost... 5 System Requirements... 5 Inside this User Guide...

More information

Filr 3.4 Desktop Application Guide for Mac. June 2018

Filr 3.4 Desktop Application Guide for Mac. June 2018 Filr 3.4 Desktop Application Guide for Mac June 2018 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

Contents. Page 1 Seavus Project Viewer Concurrent Installation Instructions

Contents. Page 1 Seavus Project Viewer Concurrent Installation Instructions Contents Page 1 Contents Contents CONTENTS 2 CHAPTER 1: INSTALLING SEAVUS PROJECT VIEWER 3 INSTALLATION INSTRUCTION 3 CONFIGURATION INSTRUCTIONS 9 ACTIVATION INSTRUCTIONS 14 RESTARTING THE SEAVUS LICENSE

More information

Silent Install. Installing BarTender and Seagull License Server using Command Lines WHITE PAPER

Silent Install. Installing BarTender and Seagull License Server using Command Lines WHITE PAPER Silent Install Installing BarTender and Seagull License Server using Command Lines WHITE PAPER Contents Overview 3 Performing a Silent Install 3 Extracting the Installation Package from the BarTender DVD

More information

ACTi Standalone NVR. ENR-020-V AC Release Notes. Version V /02/06

ACTi Standalone NVR. ENR-020-V AC Release Notes. Version V /02/06 ACTi Standalone NVR ENR-020-V4.06.17-AC Version V4.06.17 2017/02/06 Legal Notice Disclaimer The information contained in this document is intended for general information purposes. ACTi Corporation shall

More information

KUKA KRC2 and KRC4: User logon and language switching using robot IO interface

KUKA KRC2 and KRC4: User logon and language switching using robot IO interface Orange Apps UserLogonIO V1.0 KUKA KRC2 and KRC4: User logon and language switching using robot IO interface User Manual As of: Feb 24, 2014, Version 0.3 2 Introduction Copyright 2014 OrangeApps GmbH Arnikaweg

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Technical s Version: 5.7.1 Written by: Product Knowledge, R&D Date: Tuesday, February 20, 2018 2018 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

ACTi Standalone NVR. ENR-110 / 120 / 130 / 140 Release Notes. Version V /10/03

ACTi Standalone NVR. ENR-110 / 120 / 130 / 140 Release Notes. Version V /10/03 ACTi Standalone NVR ENR-110 / 120 / 130 / 140 Release Notes Version V4.03.06 2014/10/03 Legal Notice Disclaimer The information contained in this document is intended for general information purposes.

More information

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.6 May 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.3 Introduction The LiveEngage platform aims to provide the

More information

Workstation Application NVIDIA POWERdraft Release Notes. Software Version:

Workstation Application NVIDIA POWERdraft Release Notes. Software Version: Workstation Application NVIDIA POWERdraft Release Notes Software Version: 15.06.06 NVIDIA Corporation June 2003 NVIDIA POWERdraft User s Guide Published by NVIDIA Corporation 2701 San Tomas Expressway

More information

LinkOne WebView Release Notes 3.3

LinkOne WebView Release Notes 3.3 3.3 Copyright 2010 by Mincom. All rights reserved. This document is copyright and may contain proprietary information. Except as expressly permitted under relevant copyright law, neither this document,

More information

ATI Radeon HD 2400XT (256MB DH) PCIe Graphics Card Overview

ATI Radeon HD 2400XT (256MB DH) PCIe Graphics Card Overview Overview Models KD060AA Introduction The provides a Low Profile, PCI Express x16 graphics add-in card based on the ATI RV610 Graphics Processor. It supports Dual Display video output through its DMS-59

More information

Product Release Notes

Product Release Notes Product Release Notes Release 31 February 2016 VERSION 20160226 Table of Contents Document Versioning 3 Overview 4 Known Issues 4 Analytics 4 Internet Explorer 11 Error When Downloading Reports with Names

More information

Product Library 4.0 EUR. CD Contents. Release Notes August 1st, Windows Windows. Windows Vista. Server Windows 98, Me, NT4.0.

Product Library 4.0 EUR. CD Contents. Release Notes August 1st, Windows Windows. Windows Vista. Server Windows 98, Me, NT4.0. 1 of 5 Product Library 4.0 EUR Release Notes August 1st, 2010 CD Contents Printer s Version 98, Me, NT4.0 XP Vista 7 Server Server 2003 R2 KX DRIVER 4.2.1409b KX DRIVER 5.0.2202a KX (XPS) 1.0.3330b XPS

More information

HP Internet Usage Manager Software Release Notes

HP Internet Usage Manager Software Release Notes HP Internet Usage Manager Software Release Notes Version 7.0 Manufacturing Part Number: N/A E1010 U.S.A. Copyright 2010 Hewlett-Packard Company All rights reserved. Legal Notices The information in this

More information

SMART Classroom Suite 2009 Installation Guide. Windows Operating Systems

SMART Classroom Suite 2009 Installation Guide. Windows Operating Systems SMART Classroom Suite 2009 Installation Guide Windows Operating Systems Product Registration If you register your SMART product, we ll notify you of new features and software upgrades. Register online

More information

Installation Guide Command WorkStation 5.6 with Fiery Extended Applications 4.2

Installation Guide Command WorkStation 5.6 with Fiery Extended Applications 4.2 Installation Guide Command WorkStation 5.6 with Fiery Extended Applications 4.2 Fiery Extended Applications Package (FEA) v4.2 contains Fiery applications for performing tasks associated with a Fiery Server.

More information

Fiery Command WorkStation 5.8 with Fiery Extended Applications 4.4

Fiery Command WorkStation 5.8 with Fiery Extended Applications 4.4 Fiery Command WorkStation 5.8 with Fiery Extended Applications 4.4 Fiery Extended Applications (FEA) v4.4 contains Fiery software for performing tasks using a Fiery Server. This document describes how

More information

DocuSign Service User Guide. Information Guide

DocuSign Service User Guide. Information Guide Information Guide 1 DocuSign Service User Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign Intellectual

More information

Eaton BladeUPS Firmware Upgrade Instructions. UPS model : Bladeups. Firmware Upgrade Procedure. Date : 02/10/2017. Page 1/page total/15

Eaton BladeUPS Firmware Upgrade Instructions. UPS model : Bladeups. Firmware Upgrade Procedure. Date : 02/10/2017. Page 1/page total/15 UPS model : Bladeups Date : 02/10/2017 Eaton BladeUPS Page 1/page total/15 Contents 1. Download the firmware 2. UPS connection 3. Perform the firmware upgrade 4. Batch file upgrade procedure 5. Firmware

More information

Installation Information Version (CLM) English. Leica Client License Manager (CLM)

Installation Information Version (CLM) English. Leica Client License Manager (CLM) Installation Information Version (CLM) 1.7.1000 English Leica Client License Manager (CLM) Introduction Validity of this manual This document contains information on how to install the Client License Manager

More information

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS Table of Contents OVERVIEW... 1 Baseline requirements beginning with 9.3.2 and 8.2.2... 2 System requirements... 2 9.3.2... 2 8.2.2... 3 Supported

More information

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO -1- GV-Center V2 INTRODUCTION While GV Center V2 Pro is a professional version for a large central monitoring network such as alarm services companies or chain stores, GV Center V2 is a standard version

More information

Automatic Reader. Multi Lingual OCR System.

Automatic Reader. Multi Lingual OCR System. Automatic Reader Multi Lingual OCR System What is the Automatic Reader? Sakhr s Automatic Reader transforms scanned images into a grid of millions of dots, optically recognizes the characters found in

More information

Nuance Unified Client for Ricoh Smart Operation Panel (SOP) Release Notes RNE v1.1 (Released)

Nuance Unified Client for Ricoh Smart Operation Panel (SOP) Release Notes RNE v1.1 (Released) Release History Document Version 1.0 August 23, 2016 1.1 August 24, 2016 1.2 February 06, 2017 1.3 April 17, 2017 Released Affected Description of Change All Initial 3, 4, 5, and 6 Updates to 2, 3, 4 Updates

More information

Product Library 3.2 EUR CD Contents Windows Windows Server Windows Windows Windows Windows Printer Drivers Version 98, Me, 2000 Server 2000

Product Library 3.2 EUR CD Contents Windows Windows Server Windows Windows Windows Windows Printer Drivers Version 98, Me, 2000 Server 2000 1 of 6 Product Library 3.2 EUR Release Notes February 24th, 2010 CD Contents Printer Drivers Version 98, Me, NT4.0 XP Vista, 7 Server Server 2003 Server 2008 KX DRIVER 5.0.2130a KX DRIVER 4.2.1409b KX

More information

WINTOTAL SOFTWARE. Label/Marker Design Package. Technical Datasheet. TTDS-001 Revision 11 - July 2015

WINTOTAL SOFTWARE. Label/Marker Design Package. Technical Datasheet. TTDS-001 Revision 11 - July 2015 Technical Datasheet TTDS-001 Revision 11 - July 2015 WinTotal is a label/marker design package that makes wire marker printing simple in an industrial environment. Running in the familiar Windows environment,

More information

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE 59 A professional, reliable software environment is essential when working with computer equipment like an USB microscope. All Dino-Lite USB products are delivered with an in-house

More information

SAP Crystal Reports 2011 SP05+ Product Availability Matrix (PAM)

SAP Crystal Reports 2011 SP05+ Product Availability Matrix (PAM) SAP Crystal Reports 2011 SP05+ Product Availability Matrix (PAM) November, 2012 Updated: November, 2015 This Supported Platforms (PAM) presentation is applicable to CR2011 SP05 and subsequent SPs. For

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware User's Guide for Desktop Integration Suite 11g Release 1 (11.1.1) E10624-03 February 2011 Oracle Fusion Middleware User's Guide for Desktop Integration Suite, 11g Release 1 (11.1.1)

More information

HP Instant Printing Pro 2.0

HP Instant Printing Pro 2.0 HP Instant Printing Pro 2.0 Frequently Asked Questions Publication Date: July 2013 Edition: 1 2013 Hewlett-Packard Development Company, L.P. Legal notices The information contained in this document is

More information

WINTOTAL SOFTWARE. Label/Marker Design Package. Technical Datasheet. TTDS-001 Revision 12 - February 2016

WINTOTAL SOFTWARE. Label/Marker Design Package. Technical Datasheet. TTDS-001 Revision 12 - February 2016 Technical Datasheet TTDS-001 Revision 12 - February 2016 WinTotal is a label/marker design package that makes wire marker printing simple in an industrial environment. Running in the familiar Windows environment,

More information

Product Release Notes

Product Release Notes Product Release Notes Release 33 October 2016 VERSION 20161021 Table of Contents Document Versioning 2 Overview 3 Known Issues 3 Usability 3 Drag and Drop Column Reordering is not Supported in some Admin

More information

Guide & User Instructions

Guide & User Instructions Guide & User Instructions Revised 06/2012 726 Grant Street Troy Ohio 45373 877.698.3262 937.335.3887 onecallnow.com support@onecallnow.com America s Largest Message Notification Provider Copyright 2009-2012

More information

System Demonstration TRADOS TRANSLATOR'S WORKBENCH

System Demonstration TRADOS TRANSLATOR'S WORKBENCH System Demonstration TRADOS TRANSLATOR'S WORKBENCH Mark Berry MCB Systems 1. System Builders and Contacts Developer TRADOS GmbH Tel. +49 (711) 168 77-0 Hackländerstrasse 17 Fax +49 (711) 168 77-50 D-70187

More information

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration Software Version: 10.20 Windows and Linux Operating Systems Shell Wizard Guide Document Release Date: November 2014 Software Release Date: November 2014 Legal Notices Warranty

More information

HP Proposal Web Overview

HP Proposal Web Overview HP Proposal Web Overview March 2008 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice ProposalWeb overview ProposalWeb is a powerful tool

More information

SHARP UD2 Operation Manual

SHARP UD2 Operation Manual SHARP UD2 Operation Manual Ver. 2.00 Please note This manual explains how to install the SHARP UD2 and configure the unique function of the SHARP UD2. Please confirm the operation guide of each printer

More information

FS-1100 / FS-1300D Product Library

FS-1100 / FS-1300D Product Library FS-1100 / FS-1300D Product Library Version 1.1 EUR / 29.01.2008 Release Notes CD Contents Operating System(s): Version: (1) Printer Drivers: KX Printer Driver (Generic) Windows 98, Me, NT4 4.2.1409b KX

More information

Project Name SmartPSS

Project Name SmartPSS V2.00.1 Language Farsi, Arabic, Russian, Japanese, Korean, Turkish, Vietnamese, Thai, Indonesian, Traditional Chinese, Hebrew, Spanish, Portuguese, French, Dutch, Italian, German, Czech, Slovakia, Hungarian,

More information

10 Steps to Document Translation Success

10 Steps to Document Translation Success 10 Steps to Document Translation Success www.globalizationpartners.com 10 Steps to Document Translation Success Copyright 2016-2017 Globalization Partners International. All rights reserved. This ebook

More information

IBM Full Width Quiet Touch Keyboards now available on IBM System p servers and selected IntelliStation workstations

IBM Full Width Quiet Touch Keyboards now available on IBM System p servers and selected IntelliStation workstations Hardware Announcement September 12, 2006 IBM Full Width Quiet Touch Keyboards now available on IBM System p servers and selected IntelliStation workstations Overview New IBM Full Width Quiet Touch Keyboards

More information

GroupWise Connector for Outlook

GroupWise Connector for Outlook GroupWise Connector for Outlook June 2006 1 Overview The GroupWise Connector for Outlook* allows you to access GroupWise while maintaining your current Outlook behaviors. Instead of connecting to a Microsoft*

More information

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014 HP Records Manager Software Version: 8.1 Kofax Capture Template Document Release Date: August 2014 Software Release Date: August 2014 Legal Notices Warranty The only warranties for HP products and services

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