How To Integrate Or Create A Custom Application - Intermec CN51 User Manual

Hide thumbs Also See for CN51:
Table of Contents

Advertisement

How to Integrate or Create a Custom Application

// first parameter is the path and name of the DocumentCapture.exe
// (default is "\\Program Files\\Intermec\\DocumentCapture\\
// DocumentCapture.exe" second parameter is the path and name of the
// xml file the calling application would like the eMDI application
// to use. If it is blank it will use defaults, or if xml exists in
// local directory eMDI will use that.
try
{
ProcessStartInfo startInfo = new ProcessStartInfo(fileName,
arguments);
// working directory is the directory the calling application is
// running in.
startInfo.WorkingDirectory = directoryName +
Path.DirectorySeparatorChar;
Process.Start(startInfo);
}
catch (Exception exception)
{
MessageBox.Show("Failed to execute " + fileName + "\r\n" +
exception.ToString());
}
Enhanced Mobile Document Imaging (eMDI) User Guide
eMDI allows you to integrate eMDI features into an existing mobile
application, or create a custom application. To integrate eMDI
features into an existing mobile application, you must:
download and install the eMDI application.
use the code sample specified in this section to call the eMDI
application from another application.
If you are integrating the eMDI application, you need to call eMDI
from another application by inserting the following code into your
existing mobile application:
If you are creating a custom application, you must use the Intermec
APIs. For more information, see the Mobile Document Imaging APIs
in the Intermec Data Collection Resource Kit available at
www.intermec.com/idl.
21

Advertisement

Table of Contents
loading

Table of Contents