Automatically Classify Scanned Documents using LEADTOOLS Forms Recognition

Size: px
Start display at page:

Download "Automatically Classify Scanned Documents using LEADTOOLS Forms Recognition"

Transcription

1 Automatically Classify Scanned Documents using LEADTOOLS Forms Recognition

2 Introduction Document imaging is certainly saving trees and physical storage space, but in some situations it fails to save much time or hassle. Opting in to paperless statements or manually scanning paper documents yourself is a great way to archive all of your bills, invoices, financial statements and the like. However, it still requires a fair amount of time and energy to thoughtfully organize the documents in your digital filing cabinet. After all, what good is it to digitally archive your documents if they become near impossible to find them again in the future? That scenario might not be too overwhelming for an individual with a good memory and habits, but what about medium to large businesses and corporations that deal with thousands of documents on a daily basis and has hundreds of people working with the same digital archive? Without some kind of automation, you have a huge overhead of man-hours and what s even more problematic a wide opportunity for human error. Imagine being able to drop all of your scanned documents into a single folder and have all the work of moving and renaming the files in a logical, consistent manner done automatically. LEADTOOLS Forms Recognition and Processing fits the bill perfectly with its high level, flexible and powerful imaging libraries. Applications built with LEADTOOLS can compare a scanned document against known templates and correctly classify the document type. After a document is correctly identified, LEADTOOLS can then extract OCR, OMR, Barcodes and more from defined locations on the form. Processing the Document Repository The first step to solving this dilemma is to process and manage a central location where all of the scanned documents are placed for classification. There are multiple ways of accomplishing this, such as using a web service or windows service or a monkey pressing a button. The method chosen in this example is a simple console application which is then scheduled to run with Windows task scheduler.

3 The code that manages the repository is relatively simple since it primarily uses basic file and folder operations with the System.IO namespace. However the most crucial part of the application is passed on to the DocumentClassifier which encapsulates the LEADTOOLS Forms Recognition features to return the data used for moving and renaming the documents. You can download the entire project from the LEADTOOLS support forums at this link: // Check the scanned document repository for new documents string[] newdocuments = Directory.GetFiles(docRepositoryNewDocs); DocumentClassifier docclassifier = new DocumentClassifier(docRepositoryMasterForms); string moveddocumentname, masterformsubfolder; foreach (string currentdoc in newdocuments) moveddocumentname = null; // Try to match this document against known document types ClassifiedDocument classifieddoc = docclassifier.classifydocument(currentdoc); if (classifieddoc.masterformname!= null) // Add the subfolder for the master form if it doesn't exist masterformsubfolder = string.format("01\\", docrepositoryroot, classifieddoc.masterformname); if (!Directory.Exists(masterFormSubFolder)) Directory.CreateDirectory(masterFormSubFolder); // rename the file according to the date found if (classifieddoc.documentdate!= DateTime.MinValue) moveddocumentname = string.format("012", masterformsubfolder, classifieddoc.documentdate.tostring("yyyymmdd"), currentdoc.substring( currentdoc.lastindexof('.'), currentdoc.length - currentdoc.lastindexof('.'))); else // Didn't find a date to rename with, so just move it moveddocumentname = currentdoc.replace(docrepositorynewdocs, masterformsubfolder); else moveddocumentname = currentdoc.replace(docrepositorynewdocs, docrepositoryunclassifieddocs); if (!string.isnullorempty(moveddocumentname)) File.Move(currentDoc, moveddocumentname);

4 SALES: (704) As The Now Figure you code that 2: can Forms our that see, master manages Repository the two forms the invoices and are repository defined, Sub were Folders is correctly we relatively are Before ready matched Classification simple to process to since their it the master primarily form Introduction uses Using documents. and basic LEADTOOLS renamed file We and have based folder scanned operations on Forms the two date filled Recognition with field. out the Additionally, invoices System.IO based the namespace. unclassified on the master documents However forms, and the a folder tax most form acts crucial which as a part fail-safe, does of the not application letting have a the known application is passed template. on grow to For the and each adapt SUPPORT: (704) DocumentClassifier Before with file in minimal the LEADTOOLS New imaging effort. folder, is When can certainly which LEADTOOLS start you encapsulates classifying saving have a will trees new compare documents the and LEADTOOLS physical it against it type must storage that Forms the know is master space, not how in to SUPPORT@LEADTOOLS.COM your but Recognition classify templates. in master some them, If situations forms features a which match collection, is to is it accomplished return fails found, to all the save it you will data have much then by used creating process to time do for is or moving a use hassle. the collection document s one and of Opting renaming of those Master fields to the images paperless documents. Form and return templates. as statements a the template, form s LEADTOOLS name or add manually the and fields ships the scanning date you with field. want a paper Master to extract, documents Form and editor move yourself demo the is a unclassified great which way we will to documents archive use to add all of back a your master into bills, the form invoices, New for two folder financial different to get statements processed invoices again and the LEAD TECHNOLOGIES, containing a INC. single OCR field that extracts the invoice date which can be 1927 SOUTH thoughtfully TRYON // Check STREET the organize scanned the document documents repository in your for digital new documents filing cabinet. After all, // string[] Create an newdocuments OCR Engine = for Directory.GetFiles(docRepositoryNewDocs); each processor on the machine. This SUITE 200 what // DocumentClassifier allows good for is it optimal to digitally docclassifier use archive of thread = new your during documents recognition if they and become processing. near CHARLOTTE, NC Automatically the like. next However, time the it still application requires runs. a fair amount of time and energy to used rename the file. Classify impossible to find them Scanned again in the future? Taking it a Step Further Documents For example, you could easily manage using your documents online by LEADTOOLS what s even more problematic a wide opportunity for human error. directly into a database. Most importantly, LEADTOOLS Forms Recognition documents as you desire, stretching its usefulness far beyond mere ocrengines DocumentClassifier(docRepositoryMasterForms); = new List<IOcrEngine>(); for string (int moveddocumentname, i = 0; i < Environment.ProcessorCount; masterformsubfolder; i++) foreach (string currentdoc in newdocuments) That Figure ocrengines.add(ocrenginemanager.createengine( scenario 1: Defining might Master not be Form too overwhelming Templates with for the an Master individual Form with Editor a good This memory simple moveddocumentname OcrEngineType.Advantage, and solution habits, has but = null; what massive about false)); potential medium for to expansion large businesses and adaptation. and corporations ocrengines[i].startup(formscodec, // Try to that match deal this with document thousands against null, of documents known String.Empty, on String.Empty); a types daily basis and connecting ClassifiedDocument classifieddoc = has hundreds to a of cloud people service working such with as the Google same Docs, digital SkyDrive // Point archive? or Without icloud. docclassifier.classifydocument(currentdoc); repository to directory with existing master forms Similarly, some formsrepository if kind businesses (classifieddoc.masterformname of automation, = new could DiskMasterFormsRepository(formsCodec, you adapt have it to!= a huge monitor null) overhead and organize of man-hours incoming and faxes _MasterFormFolder); and attachments or use the recognized field data and store it autoengine // Add = new the AutoFormsEngine(formsRepository, subfolder the master if ocrengines, it doesn't null, exist AutoFormsRecognitionManager.Default masterformsubfolder = string.format("01\\", AutoFormsRecognitionManager.Ocr, docrepositoryroot, Recognition Imagine 30, 70, being classifieddoc.masterformname); true); can able process to drop as all much of your or as scanned little information documents from into the a single scanned folder and if have (!Directory.Exists(masterFormSubFolder)) all the work of moving and renaming the files in a logical, organization // Run the consistent manner Directory.CreateDirectory(masterFormSubFolder); forms and recognition archival. done automatically. on this fields, document check LEADTOOLS boxes, invoice Forms Recognition amounts, AutoFormsRunResult runresult = autoengine.run(document, null); and if (runresult much Processing more // rename!= fits can null) the be bill extracted perfectly to with speed its up high any level, workflow. the file according to the date found flexible and powerful Figure 3: if Forms imaging (classifieddoc.documentdate Repository libraries. and Applications Sub Folders!= DateTime.MinValue) built After with Classification LEADTOOLS can // In compare this example we use two pieces of information About LEAD Technologies a scanned document against known templates and correctly // to organize moveddocumentname the classified = string.format("012", forms: classify the document type. After a document is correctly identified, Conclusion // 1. Form masterformsubfolder, name is used for the sub folder With a rich LEADTOOLS history // 2. of "ClassificationRenameDate" over classifieddoc.documentdate.tostring("yyyymmdd"), can twenty then years, extract LEAD OCR, field has OMR, established for Barcodes the file itself name and as more the world's from defined retclassifieddocument.masterformname locations currentdoc.substring( on the form. = leading provider This is of runresult.recognitionresult.masterform.name; just software one of development currentdoc.lastindexof('.'), many real world toolkits solutions for document, you can tackle medical, with multimedia, raster and vector LEADTOOLS. imaging. Its LEAD's currentdoc.length state flagship of the art product, Forms - currentdoc.lastindexof('.'))); Recognition LEADTOOLS, and holds Processing the top SDK position in every the most // major Process flexible country the and recognized throughout powerful form product the and world extract in its and class, desired boasts and info a LEADTOOLS healthy, diverse customer base foreach else(formpage formpage in runresult.formfields) offers and an strong incredible list of value corporate with its partners comprehensive including family some of of toolkits the largest for and Processing most influential the Document Repository raster, organizations foreach document, // Didn't (FormField medical from around find a field date and in to multimedia the formpage) globe. rename with, imaging. so just For move more it information on how LEAD moveddocumentname Technologies = can currentdoc.replace(docrepositorynewdocs, image-enable your application and boost The first step if (field to masterformsubfolder); solving!= null this && dilemma field.name is to == process "ClassificationRenameDate") your ROI, and manage a central location visit to download a free evaluation, or give us a call where all of the scanned documents are placed for classification. at retclassifieddocument.documentdate = There are multiple ways of accomplishing this, such as using a web else DateTime.Parse((field.Result as TextFormFieldResult).Text); service or windows service or a monkey pressing a button. The method chosen in moveddocumentname this example is = a currentdoc.replace(docrepositorynewdocs, simple console application which is then docrepositoryunclassifieddocs); scheduled to run with Windows task scheduler. if (!string.isnullorempty(moveddocumentname)) File.Move(currentDoc, moveddocumentname);

5 Now that our master forms are defined, we are ready to process the documents. We have scanned two filled out invoices based on the master forms, and a tax form which does not have a known template. For each file in the New folder, LEADTOOLS will compare it against the master templates. If a match is found, it will then process the document s fields and return the form s name and the date field. // Create an OCR Engine for each processor on the machine. This // allows for optimal use of thread during recognition and processing. ocrengines = new List<IOcrEngine>(); for (int i = 0; i < Environment.ProcessorCount; i++) ocrengines.add(ocrenginemanager.createengine( OcrEngineType.Advantage, false)); ocrengines[i].startup(formscodec, null, String.Empty, String.Empty); // Point repository to directory with existing master forms formsrepository = new DiskMasterFormsRepository(formsCodec, _MasterFormFolder); autoengine = new AutoFormsEngine(formsRepository, ocrengines, null, AutoFormsRecognitionManager.Default AutoFormsRecognitionManager.Ocr, 30, 70, true); // Run the forms recognition on this document AutoFormsRunResult runresult = autoengine.run(document, null); if (runresult!= null) // In this example we use two pieces of information // to organize the classified forms: // 1. Form name is used for the sub folder // 2. "ClassificationRenameDate" field for the file name retclassifieddocument.masterformname = runresult.recognitionresult.masterform.name; // Process the recognized form and extract desired info foreach (FormPage formpage in runresult.formfields) foreach (FormField field in formpage) if (field!= null && field.name == "ClassificationRenameDate") retclassifieddocument.documentdate = DateTime.Parse((field.Result as TextFormFieldResult).Text);

6 SALES: (704) As The Now Figure you code that 2: can Forms our that see, master manages Repository the two forms the invoices and are repository defined, Sub were Folders is correctly we relatively are Before ready matched Classification simple to process to since their it the master primarily form Introduction uses Using documents. and basic LEADTOOLS renamed file We and have based folder scanned operations on Forms the two date filled Recognition with field. out the Additionally, invoices System.IO based the namespace. unclassified on the master documents However forms, and the a folder tax most form acts crucial which as a part fail-safe, does of the not application letting have a the known application is passed template. on grow to For the and each adapt SUPPORT: (704) DocumentClassifier Before with file in minimal the LEADTOOLS New imaging effort. folder, is When can certainly which LEADTOOLS start you encapsulates classifying saving have a will trees new compare documents the and LEADTOOLS physical it against it type must storage that Forms the know is master space, not how in to SUPPORT@LEADTOOLS.COM your but Recognition classify templates. in master some them, If situations forms features a which match collection, is to is it accomplished return fails found, to all the save it you will data have much then by used creating process to time do for is or moving a use hassle. the collection document s one and of Opting renaming of those Master fields to the images paperless documents. Form and return templates. as statements a the template, form s LEADTOOLS name or add manually the and fields ships the scanning date you with field. want a paper Master to extract, documents Form and editor move yourself demo the is a unclassified great which way we will to documents archive use to add all of back a your master into bills, the form invoices, New for two folder financial different to get statements processed invoices again and the LEAD TECHNOLOGIES, containing a INC. single OCR field that extracts the invoice date which can be 1927 SOUTH thoughtfully TRYON // Check STREET the organize scanned the document documents repository in your for digital new documents filing cabinet. After all, // string[] Create an newdocuments OCR Engine = for Directory.GetFiles(docRepositoryNewDocs); each processor on the machine. This SUITE 200 what // DocumentClassifier allows good for is it optimal to digitally docclassifier use archive of thread = new your during documents recognition if they and become processing. near CHARLOTTE, NC Automatically the like. next However, time the it still application requires runs. a fair amount of time and energy to used rename the file. Classify impossible to find them Scanned again in the future? Taking it a Step Further Documents For example, you could easily manage using your documents online by LEADTOOLS what s even more problematic a wide opportunity for human error. directly into a database. Most importantly, LEADTOOLS Forms Recognition documents as you desire, stretching its usefulness far beyond mere ocrengines DocumentClassifier(docRepositoryMasterForms); = new List<IOcrEngine>(); for string (int moveddocumentname, i = 0; i < Environment.ProcessorCount; masterformsubfolder; i++) foreach (string currentdoc in newdocuments) That Figure ocrengines.add(ocrenginemanager.createengine( scenario 1: Defining might Master not be Form too overwhelming Templates with for the an Master individual Form with Editor a good This memory simple moveddocumentname OcrEngineType.Advantage, and solution habits, has but = null; what massive about false)); potential medium for to expansion large businesses and adaptation. and corporations ocrengines[i].startup(formscodec, // Try to that match deal this with document thousands against null, of documents known String.Empty, on String.Empty); a types daily basis and connecting ClassifiedDocument classifieddoc = has hundreds to a of cloud people service working such with as the Google same Docs, digital SkyDrive // Point archive? or Without icloud. docclassifier.classifydocument(currentdoc); repository to directory with existing master forms Similarly, some formsrepository if kind businesses (classifieddoc.masterformname of automation, = new could DiskMasterFormsRepository(formsCodec, you adapt have it to!= a huge monitor null) overhead and organize of man-hours incoming and faxes _MasterFormFolder); and attachments or use the recognized field data and store it autoengine // Add = new the AutoFormsEngine(formsRepository, subfolder the master if ocrengines, it doesn't null, exist AutoFormsRecognitionManager.Default masterformsubfolder = string.format("01\\", AutoFormsRecognitionManager.Ocr, docrepositoryroot, Recognition Imagine 30, 70, being classifieddoc.masterformname); true); can able process to drop as all much of your or as scanned little information documents from into the a single scanned folder and if have (!Directory.Exists(masterFormSubFolder)) all the work of moving and renaming the files in a logical, organization // Run the consistent manner Directory.CreateDirectory(masterFormSubFolder); forms and recognition archival. done automatically. on this fields, document check LEADTOOLS boxes, invoice Forms Recognition amounts, AutoFormsRunResult runresult = autoengine.run(document, null); and if (runresult much Processing more // rename!= fits can null) the be bill extracted perfectly to with speed its up high any level, workflow. the file according to the date found flexible and powerful Figure 3: if Forms imaging (classifieddoc.documentdate Repository libraries. and Applications Sub Folders!= DateTime.MinValue) built After with Classification LEADTOOLS can // In compare this example we use two pieces of information About LEAD Technologies a scanned document against known templates and correctly // to organize moveddocumentname the classified = string.format("012", forms: classify the document type. After a document is correctly identified, Conclusion // 1. Form masterformsubfolder, name is used for the sub folder With a rich LEADTOOLS history // 2. of "ClassificationRenameDate" over classifieddoc.documentdate.tostring("yyyymmdd"), can twenty then years, extract LEAD OCR, field has OMR, established for Barcodes the file itself name and as more the world's from defined retclassifieddocument.masterformname locations currentdoc.substring( on the form. = leading provider This is of runresult.recognitionresult.masterform.name; just software one of development currentdoc.lastindexof('.'), many real world toolkits solutions for document, you can tackle medical, with multimedia, raster and vector LEADTOOLS. imaging. Its LEAD's currentdoc.length state flagship of the art product, Forms - currentdoc.lastindexof('.'))); Recognition LEADTOOLS, and holds Processing the top SDK position in every the most // major Process flexible country the and recognized throughout powerful form product the and world extract in its and class, desired boasts and info a LEADTOOLS healthy, diverse customer base foreach else(formpage formpage in runresult.formfields) offers and an strong incredible list of value corporate with its partners comprehensive including family some of of toolkits the largest for and Processing most influential the Document Repository raster, organizations foreach document, // Didn't (FormField medical from around find a field date and in to multimedia the formpage) globe. rename with, imaging. so just For move more it information on how LEAD moveddocumentname Technologies = can currentdoc.replace(docrepositorynewdocs, image-enable your application and boost The first step if (field to masterformsubfolder); solving!= null this && dilemma field.name is to == process "ClassificationRenameDate") your ROI, and manage a central location visit to download a free evaluation, or give us a call where all of the scanned documents are placed for classification. at retclassifieddocument.documentdate = There are multiple ways of accomplishing this, such as using a web else DateTime.Parse((field.Result as TextFormFieldResult).Text); service or windows service or a monkey pressing a button. The method chosen in moveddocumentname this example is = a currentdoc.replace(docrepositorynewdocs, simple console application which is then docrepositoryunclassifieddocs); scheduled to run with Windows task scheduler. if (!string.isnullorempty(moveddocumentname)) File.Move(currentDoc, moveddocumentname);

7 SALES: (704) As The Now Figure you code that 2: can Forms our that see, master manages Repository the two forms the invoices and are repository defined, Sub were Folders is correctly we relatively are Before ready matched Classification simple to process to since their it the master primarily form Introduction uses Using documents. and basic LEADTOOLS renamed file We and have based folder scanned operations on Forms the two date filled Recognition with field. out the Additionally, invoices System.IO based the namespace. unclassified on the master documents However forms, and the a folder tax most form acts crucial which as a part fail-safe, does of the not application letting have a the known application is passed template. on grow to For the and each adapt SUPPORT: (704) DocumentClassifier Before with file in minimal the LEADTOOLS New imaging effort. folder, is When can certainly which LEADTOOLS start you encapsulates classifying saving have a will trees new compare documents the and LEADTOOLS physical it against it type must storage that Forms the know is master space, not how in to SUPPORT@LEADTOOLS.COM your but Recognition classify templates. in master some them, If situations forms features a which match collection, is to is it accomplished return fails found, to all the save it you will data have much then by used creating process to time do for is or moving a use hassle. the collection document s one and of Opting renaming of those Master fields to the images paperless documents. Form and return templates. as statements a the template, form s LEADTOOLS name or add manually the and fields ships the scanning date you with field. want a paper Master to extract, documents Form and editor move yourself demo the is a unclassified great which way we will to documents archive use to add all of back a your master into bills, the form invoices, New for two folder financial different to get statements processed invoices again and the LEAD TECHNOLOGIES, containing a INC. single OCR field that extracts the invoice date which can be 1927 SOUTH thoughtfully TRYON // Check STREET the organize scanned the document documents repository in your for digital new documents filing cabinet. After all, // string[] Create an newdocuments OCR Engine = for Directory.GetFiles(docRepositoryNewDocs); each processor on the machine. This SUITE 200 what // DocumentClassifier allows good for is it optimal to digitally docclassifier use archive of thread = new your during documents recognition if they and become processing. near CHARLOTTE, NC Automatically the like. next However, time the it still application requires runs. a fair amount of time and energy to used rename the file. Classify impossible to find them Scanned again in the future? Taking it a Step Further Documents For example, you could easily manage using your documents online by LEADTOOLS what s even more problematic a wide opportunity for human error. directly into a database. Most importantly, LEADTOOLS Forms Recognition documents as you desire, stretching its usefulness far beyond mere ocrengines DocumentClassifier(docRepositoryMasterForms); = new List<IOcrEngine>(); for string (int moveddocumentname, i = 0; i < Environment.ProcessorCount; masterformsubfolder; i++) foreach (string currentdoc in newdocuments) That Figure ocrengines.add(ocrenginemanager.createengine( scenario 1: Defining might Master not be Form too overwhelming Templates with for the an Master individual Form with Editor a good This memory simple moveddocumentname OcrEngineType.Advantage, and solution habits, has but = null; what massive about false)); potential medium for to expansion large businesses and adaptation. and corporations ocrengines[i].startup(formscodec, // Try to that match deal this with document thousands against null, of documents known String.Empty, on String.Empty); a types daily basis and connecting ClassifiedDocument classifieddoc = has hundreds to a of cloud people service working such with as the Google same Docs, digital SkyDrive // Point archive? or Without icloud. docclassifier.classifydocument(currentdoc); repository to directory with existing master forms Similarly, some formsrepository if kind businesses (classifieddoc.masterformname of automation, = new could DiskMasterFormsRepository(formsCodec, you adapt have it to!= a huge monitor null) overhead and organize of man-hours incoming and faxes _MasterFormFolder); and attachments or use the recognized field data and store it autoengine // Add = new the AutoFormsEngine(formsRepository, subfolder the master if ocrengines, it doesn't null, exist AutoFormsRecognitionManager.Default masterformsubfolder = string.format("01\\", AutoFormsRecognitionManager.Ocr, docrepositoryroot, Recognition Imagine 30, 70, being classifieddoc.masterformname); true); can able process to drop as all much of your or as scanned little information documents from into the a single scanned folder and if have (!Directory.Exists(masterFormSubFolder)) all the work of moving and renaming the files in a logical, organization // Run the consistent manner Directory.CreateDirectory(masterFormSubFolder); forms and recognition archival. done automatically. on this fields, document check LEADTOOLS boxes, invoice Forms Recognition amounts, AutoFormsRunResult runresult = autoengine.run(document, null); and if (runresult much Processing more // rename!= fits can null) the be bill extracted perfectly to with speed its up high any level, workflow. the file according to the date found flexible and powerful Figure 3: if Forms imaging (classifieddoc.documentdate Repository libraries. and Applications Sub Folders!= DateTime.MinValue) built After with Classification LEADTOOLS can // In compare this example we use two pieces of information About LEAD Technologies a scanned document against known templates and correctly // to organize moveddocumentname the classified = string.format("012", forms: classify the document type. After a document is correctly identified, Conclusion // 1. Form masterformsubfolder, name is used for the sub folder With a rich LEADTOOLS history // 2. of "ClassificationRenameDate" over classifieddoc.documentdate.tostring("yyyymmdd"), can twenty then years, extract LEAD OCR, field has OMR, established for Barcodes the file itself name and as more the world's from defined retclassifieddocument.masterformname locations currentdoc.substring( on the form. = leading provider This is of runresult.recognitionresult.masterform.name; just software one of development currentdoc.lastindexof('.'), many real world toolkits solutions for document, you can tackle medical, with multimedia, raster and vector LEADTOOLS. imaging. Its LEAD's currentdoc.length state flagship of the art product, Forms - currentdoc.lastindexof('.'))); Recognition LEADTOOLS, and holds Processing the top SDK position in every the most // major Process flexible country the and recognized throughout powerful form product the and world extract in its and class, desired boasts and info a LEADTOOLS healthy, diverse customer base foreach else(formpage formpage in runresult.formfields) offers and an strong incredible list of value corporate with its partners comprehensive including family some of of toolkits the largest for and Processing most influential the Document Repository raster, organizations foreach document, // Didn't (FormField medical from around find a field date and in to multimedia the formpage) globe. rename with, imaging. so just For move more it information on how LEAD moveddocumentname Technologies = can currentdoc.replace(docrepositorynewdocs, image-enable your application and boost The first step if (field to masterformsubfolder); solving!= null this && dilemma field.name is to == process "ClassificationRenameDate") your ROI, and manage a central location visit to download a free evaluation, or give us a call where all of the scanned documents are placed for classification. at retclassifieddocument.documentdate = There are multiple ways of accomplishing this, such as using a web else DateTime.Parse((field.Result as TextFormFieldResult).Text); service or windows service or a monkey pressing a button. The method chosen in moveddocumentname this example is = a currentdoc.replace(docrepositorynewdocs, simple console application which is then docrepositoryunclassifieddocs); scheduled to run with Windows task scheduler. if (!string.isnullorempty(moveddocumentname)) File.Move(currentDoc, moveddocumentname);

8 SALES: (704) SUPPORT: (704) LEAD TECHNOLOGIES, INC SOUTH TRYON STREET SUITE 200 CHARLOTTE, NC About LEAD Technologies With a rich history of over twenty years, LEAD has established itself as the world's leading provider of software development toolkits for document, medical, multimedia, raster and vector imaging. LEAD's flagship product, LEADTOOLS, holds the top position in every major country throughout the world and boasts a healthy, diverse customer base and strong list of corporate partners including some of the largest and most influential organizations from around the globe.

Creating and Processing OMR Forms with LEADTOOLS

Creating and Processing OMR Forms with LEADTOOLS Creating and Processing OMR Forms with LEADTOOLS Introduction Forms recognition and processing is used all over the world to tackle a wide variety of tasks including classification, document archival,

More information

Forms Recognition Implementation Strategies for Large Enterprises

Forms Recognition Implementation Strategies for Large Enterprises Forms Recognition Implementation Strategies for Large Enterprises Introduction Countless companies rely on paper forms for gathering information from customers, patients, students and the like. Automated

More information

Using LEADTOOLS OCR to Enhance Google Drive Search

Using LEADTOOLS OCR to Enhance Google Drive Search Using LEADTOOLS OCR to Enhance Google Drive Search Introduction Google Drive is a wonderful service for storing, organizing and sharing files such as documents, photos and videos. However, TIFF and other

More information

Implementing a Standardized PDF/A Document Storage System with LEADTOOLS

Implementing a Standardized PDF/A Document Storage System with LEADTOOLS Implementing a Standardized PDF/A Document Storage System with LEADTOOLS Introduction Electronic document archival has evolved far beyond the simple days of scanning a paper document and saving it as an

More information

Using Print to PACS to Digitize Your Legacy Medical Imaging Systems

Using Print to PACS to Digitize Your Legacy Medical Imaging Systems Using Print to PACS to Digitize Your Legacy Medical Imaging Systems Introduction Incorporating a digital Picture Archival and Communication System (PACS) is a must-have in today s healthcare industry for

More information

HTML5 Web Scanning with LEADTOOLS

HTML5 Web Scanning with LEADTOOLS HTML5 Web Scanning with LEADTOOLS 1 Introduction Scanning and document capture is an essential aspect and starting point of most document imaging applications. For web developers, this is a problematic

More information

Storage and Retrieval - Systematic Indexing in Document Pool

Storage and Retrieval - Systematic Indexing in Document Pool Filing Email with DocuWare Solution Info Storage and Retrieval - Systematic Indexing in Document Pool Email has become a core communication medium in the business world and is well on its way to replacing

More information

Together we can build something great

Together we can build something great Together we can build something great User Defined Workflow Utility And New Document Management Features Dawn Stenbol and Bill Natalie Technical Track Atlanta Room Tuesday, May 3nd 10:00 am What is workflow?

More information

DOCUMENT NAVIGATOR SALES GUIDE ADD NAME. KONICA MINOLTA Document Navigator Sales Guide

DOCUMENT NAVIGATOR SALES GUIDE ADD NAME. KONICA MINOLTA Document Navigator Sales Guide DOCUMENT NAVIGATOR SALES GUIDE ADD NAME WHAT IS DOCUMENT NAVIGATOR? The document business critical data, currently locked in paper form The MFD the on ramp to an organisation s digital information workflow

More information

A strong team: DocuWare and Microsoft Outlook

A strong team: DocuWare and Microsoft Outlook Connect to Outlook Product Info A strong team: DocuWare and Microsoft Outlook Use Connect to Outlook to archive your emails directly in DocuWare from MS Outlook. It is just as easy for you to access archived

More information

RJS Imaging Scan Workstation

RJS Imaging Scan Workstation User Guide RJS Imaging Scan Workstation 2013 RJS Software Systems Document Version 2.2.6.1 RJS Software Systems 2970 Judicial Road, Suite 100 Burnsville, MN 55337 Phone: 952-736-5800 Fax: 952-736-5801

More information

Scanshare Sales Guide V1.2

Scanshare Sales Guide V1.2 Scanshare Sales Guide V1.2 What is Scanshare? The document business critical data, currently locked in paper form The MFD the on ramp to an organisation s digital information workflow Scanshare the middleware/bridge

More information

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed.

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed. Technical Overview Technical Overview Standards based Architecture Scalable Secure Entirely Web Based Browser Independent Document Format independent LDAP integration Distributed Architecture Multiple

More information

TREENO ELECTRONIC DOCUMENT MANAGEMENT

TREENO ELECTRONIC DOCUMENT MANAGEMENT TREENO ELECTRONIC DOCUMENT MANAGEMENT User Guide February 2012 Contents Introduction... 5 About This Guide... 5 About Treeno... 6 Navigating Treeno EDM... 7 Logging in to Treeno EDM... 7 Changing Your

More information

Capturing Documents & Data in inforouter Version 8.x

Capturing Documents & Data in inforouter Version 8.x Capturing Documents & Data in inforouter Version 8.x Active Innovations, Inc. Copyright 1998-2017 www.inforouter.com Active Innovations, Inc. A Document Management Company Copyright 1998-2017 http://www.inforouter.com

More information

Document Capture for Microsoft Dynamics NAV

Document Capture for Microsoft Dynamics NAV Document Capture for Microsoft Dynamics NAV Daily Usage for End Users - Version 4.50 Document Capture - Daily Usage for End Users - Version 4.50 Page 1 / 13 TABLE OF CONTENTS INTRODUCTION... 3 SCAN, OCR

More information

Benefits. What We Do. Traditional Capture. How It Works. Document Definition. Demonstration Advanced Capture Capabilities.

Benefits. What We Do. Traditional Capture. How It Works. Document Definition. Demonstration Advanced Capture Capabilities. OUR AGENDA FOR TODAY: z What We Do # Benefits Y Traditional Capture 5 How It Works $ Document Definition 8 Demonstration Advanced Capture Capabilities p Customer Examples Jason Burian Director of Product

More information

The Case for Digital Mailroom

The Case for Digital Mailroom Click2Scan Ltd 6 Whitworth Road Frome Somerset BA11 4BY T: 0845 873 8600 E: info@c2s.co.uk W: www.c2s.co.uk The Case for Digital Mailroom A White Paper April 2014 Introduction Every business receives correspondence

More information

TREENO ELECTRONIC DOCUMENT MANAGEMENT. Administration Guide

TREENO ELECTRONIC DOCUMENT MANAGEMENT. Administration Guide TREENO ELECTRONIC DOCUMENT MANAGEMENT Administration Guide February 2012 Contents Introduction... 8 About This Guide... 9 About Treeno... 9 Managing Security... 10 Treeno Security Overview... 10 Administrator

More information

Facts

Facts vfiler is a software application that can process scanned documents (and virtually any other file type) automatically directly into the Pinnacle Repository, Windows folder trees, text files and any ODBC

More information

BREAKING THE PAPER CHAIN. The Freedom of an Electronic Office

BREAKING THE PAPER CHAIN. The Freedom of an Electronic Office BREAKING THE PAPER CHAIN The Freedom of an Electronic Office 1 2 MY JOURNEY Before the financial crisis, HVCC and the AMC onslaught, I had a large residential appraisal practice The simplest work file

More information

ACOM s EZeDocs/400 Suite is a comprehensive document output management solution.

ACOM s EZeDocs/400 Suite is a comprehensive document output management solution. COMPREHENSIVE DOCUMENT OUTPUT MANAGEMENT SOLUTION ACOM s is a comprehensive document output management solution. It provides you with ultimate control to: Design and print your back-office business forms

More information

Siemens Digitalized Production Cell Boosts Auto Parts Manufacturing by 20% siemens.com/global/en/home/products/automation

Siemens Digitalized Production Cell Boosts Auto Parts Manufacturing by 20% siemens.com/global/en/home/products/automation Siemens Digitalized Production Cell Boosts Auto Parts Manufacturing by 20% siemens.com/global/en/home/products/automation Overview Increases in order size and quantity led Wisconsin-based auto parts manufacturer

More information

Function (Selection) SAP Standard Extension. Automatic insertion of mail texts depending on intended recipient

Function (Selection) SAP Standard Extension. Automatic insertion of mail texts depending on intended recipient xtmail Suite for SAP conlutio GmbH Living without e-mail seems almost inconceivable these days. However, SAP users often sent common documents such as purchase orders or order confirmations via paper or

More information

Building a Data Storage System

Building a Data Storage System This Guide shows you how to manage your media files, safely store and backup data, and setup an efficient NLE workflow. Some guidelines will vary based on the scope of the project and the types of files

More information

Index archived documents automatically from external data source

Index archived documents automatically from external data source Autoindex ProductInfo Index archived documents automatically from external data source Many of the documents you need to archive will already have existing categorization criteria and search words in the

More information

Introduction to Security in Laserfiche 8.3 and later. White Paper

Introduction to Security in Laserfiche 8.3 and later. White Paper Introduction to Security in Laserfiche 8.3 and later White Paper November 2013 Table of Contents Authentication and Authorization... 4 Authentication... 4 Windows Accounts and LDAP... 5 Laserfiche Trustees...

More information

POC Evaluation Guide May 09, 2017

POC Evaluation Guide May 09, 2017 POC Evaluation Guide May 09, 2017 This page intentionally left blank P r o p r i e t a r y a n d C o n f i d e n t i a l. 2 0 1 7 R F P M o n k e y. c o m L L C Page 2 CONTENTS Read Me First... 4 About

More information

Class #7 Guidebook Page Expansion. By Ryan Stevenson

Class #7 Guidebook Page Expansion. By Ryan Stevenson Class #7 Guidebook Page Expansion By Ryan Stevenson Table of Contents 1. Class Purpose 2. Expansion Overview 3. Structure Changes 4. Traffic Funnel 5. Page Updates 6. Advertising Updates 7. Prepare for

More information

G, William James. The smartphone & tablet have changed the course of real estate

G, William James.   The smartphone & tablet have changed the course of real estate Mobile Office Solutions For REALTORS : Must-Have Tools For The Agent s Mobile Office A mobile professional s guide to knowing Which wireless technologies work for you G. William James Handheld Computer

More information

Leverage SharePoint with PSIcapture

Leverage SharePoint with PSIcapture Leverage SharePoint with PSIcapture A White Paper Courtesy of PSIGEN Software, Inc. Table of Contents Intro to PSIcapture...1 Intro to PSIcapture for SharePoint...1 Key SharePoint Features...2 Key PSIcapture

More information

ConfigOS. Concept of Operations. Automated STIG Remediation Making Software Work in Secure Environments. Version 1.7.

ConfigOS. Concept of Operations. Automated STIG Remediation Making Software Work in Secure Environments. Version 1.7. ConfigOS Concept of Operations Automated STIG Remediation Making Software Work in Secure Environments Version 1.7 February 31, 2015 Copyright 2015 SteelCloud LLC www.steelcloud.com 20110 Ashbrook Place,

More information

FileDirector. Decreased costs, increased efficiency and secure access to your business documents. The New FileDirector Version 2.

FileDirector. Decreased costs, increased efficiency and secure access to your business documents. The New FileDirector Version 2. FileDirector enterprise The New FileDirector Version 2 Decreased costs, increased efficiency and secure access to your business documents The Solution that tailors itself to your Your needs Requirements

More information

Optical Character Recognition. SDK Reference. Issue 04 Date

Optical Character Recognition. SDK Reference. Issue 04 Date Issue 04 Date 2018-09-12 Contents Contents 1 SDK Environment Setup...1 1.1 Applying for a Service...1 1.2 Obtaining the SDK... 1 1.3 Preparing a Java Development Environment... 1 1.4 Installing Eclipse

More information

DOWNLOAD OR READ : WORD SMART PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : WORD SMART PDF EBOOK EPUB MOBI DOWNLOAD OR READ : WORD SMART PDF EBOOK EPUB MOBI Page 1 Page 2 word smart word smart pdf word smart Convert PDF to Word with Smart PDF Converter. Easy-to-use software for converting PDF to Word, Excel,

More information

The rapid expansion of usage over the last fifty years can be seen as one of the major technical, scientific and sociological evolutions of

The rapid expansion of  usage over the last fifty years can be seen as one of the major technical, scientific and sociological evolutions of 1 The rapid expansion of email usage over the last fifty years can be seen as one of the major technical, scientific and sociological evolutions of recent times. Pre-dating the Internet and contributing

More information

Proven inserting technology that finishes strong.

Proven inserting technology that finishes strong. Shipping & Mailing Inserting Relay 5000 inserter Proven inserting technology that finishes strong. Meet tight turnaround times and exceed expectations The Relay TM 5000 inserting system is designed on

More information

QuickBooks 2008 Software Installation Guide

QuickBooks 2008 Software Installation Guide 12/11/07; Ver. APD-1.2 Welcome This guide is designed to support users installing QuickBooks: Pro or Premier 2008 financial accounting software, especially in a networked environment. The guide also covers

More information

Topic 16: Putting It All Together (cont.)

Topic 16: Putting It All Together (cont.) Topic 16: Putting It All Together (cont.) Will Your Current System Help You Get Your Unfair Share of Your Market? On a scale of 1-10, how I am confident my current system will get me off the roller coaster

More information

Content Modeling for Administrators

Content Modeling for Administrators Content Modeling for Administrators Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Self-Service Portal & estore Guide. Your complete guide to installing, administering and using the 1CRM Self-Service Portal and estore.

Self-Service Portal & estore Guide. Your complete guide to installing, administering and using the 1CRM Self-Service Portal and estore. Self-Service Portal & estore Guide Your complete guide to installing, administering and using the 1CRM Self-Service Portal and estore. Version 4.2, October, 2017. This document is subject to change without

More information

ResWare Features. Adeptive Software 5370 Manhattan Circle, Suite 200 Boulder, Colorado

ResWare Features. Adeptive Software 5370 Manhattan Circle, Suite 200 Boulder, Colorado ResWare Features Adeptive Softwareʼs flagship product, ResWare, is a revolutionary real estate transaction management system. More and more of the industryʼs leading companies are choosing ResWare. See

More information

Nuance AutoStore route destinations

Nuance AutoStore route destinations Data Sheet Nuance AutoStore route destinations is a server-based application which orchestrates the capture and secure delivery of paper and electronic documents into business applications. Once documents

More information

Cisco How Virtual Private Networks Work

Cisco How Virtual Private Networks Work Table of Contents How Virtual Private Networks Work...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1 Components Used...1 Background Information...1 What Makes a VPN?...2 Analogy:

More information

SAPERION Release Script

SAPERION Release Script SAPERION Release Script Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the property

More information

But the foundation of marketing success is the quality and size of your permission-based list.

But the foundation of  marketing success is the quality and size of your permission-based  list. Introduction Email marketing can be profitable for any business, no matter what kind of product or service you offer. But the foundation of email marketing success is the quality and size of your permission-based

More information

RECOGNITION ProductInfo

RECOGNITION ProductInfo This website stores cookies on your computer. These cookies are used to improve your website and provide more personalized services to you, both on this website and through other media. To find out more

More information

Guidelines on the use of G Suite provided by ELSA

Guidelines on the use of G Suite provided by ELSA G Suite Guidelines Guidelines on the use of G Suite provided by ELSA Why do we use G Suite? Information Technology (read more on page 30 of the ICMDB) continues to be a very important dimension in the

More information

Evernote. Frequently Asked Questions

Evernote. Frequently Asked Questions Evernote. Frequently Asked Questions By Garth Scaysbrook garthscaysbrook.com 1 What is Evernote? Evernote is an application that helps you remember things. It captures information: notes, text, pictures,

More information

echive The Challenge Open Archive Systems The Solution echive Series Overview e c h .tif Drawing and Document Management Made Easy .

echive The Challenge Open Archive Systems The Solution echive Series Overview e c h .tif Drawing and Document Management Made Easy . Open Archive Systems The Challenge unstructured, diverse, disparate, misfiled echive Drawing and Document Management Made Easy Get your information when, where and how you want it! Plot Files.tif.pdf Mixed

More information

Powered by. start guide. Discover what you can achieve with Easy Website In A Box

Powered by. start guide. Discover what you can achieve with Easy Website In A Box Powered by start guide Discover what you can achieve with Easy Website In A Box Easỵ - Ok, I bought Easy Website In A Box. What do I do now? To get your own website up and running, all you need to do is

More information

Storing and Organizing Your Digital Images

Storing and Organizing Your Digital Images Storing and Organizing Your Digital Images Most people don t do a good job of storing and organizing digital images. This includes: Your Digital Photographs Digital Photographs and images from others Scanned

More information

About MagTek. PIN Entry & Management

About MagTek. PIN Entry & Management About MagTek Since 1972, MagTek has been a leading manufacturer of electronic devices and systems for the reliable issuance, reading, transmission and security of cards, checks, PINs and other identification

More information

Precision and performance in technology you can trust.

Precision and performance in technology you can trust. Shipping & Mailing Inserting Relay 6000 inserter Precision and performance in technology you can trust. Simplify complex mail The Relay TM 6000 inserting system is designed on a fast, reliable folding

More information

Paraben Examiner 9.0 Release Notes

Paraben  Examiner 9.0 Release Notes Paraben E-mail Examiner 9.0 Release Notes 1 Paraben Corporation Welcome to Paraben s E-mail Examiner 9.0! Paraben s Email Examiner-EMX allows for the forensic examination of the most popular local e-mail

More information

Features & Functionalities

Features & Functionalities Features & Functionalities Release 2.1 www.capture-experts.com Import FEATURES OVERVIEW Processing TIF CSV EML Text Clean-up Email HTML ZIP TXT Merge Documents Convert to TIF PST RTF PPT XLS Text Recognition

More information

End the Frustration: Make the leap from Microsoft Access to the FileMaker Platform

End the Frustration: Make the leap from Microsoft Access to the FileMaker Platform End the Frustration: Make the leap from Microsoft Access to the FileMaker Platform We asked former Microsoft Access users: How would you describe your Access database? Clunky behemoth Kept me up at night

More information

Welcome to the PDF Xpansion SDK

Welcome to the PDF Xpansion SDK Welcome to the PDF Xpansion SDK The PDF Xpansion SDK provides a set of APIs enabling you to integrate high-performance PDF/XPS features and functions into your applications and software solutions. The

More information

GFI FaxMaker and HIPAA compliance

GFI FaxMaker and HIPAA compliance GFI White Paper GFI FaxMaker and HIPAA compliance This document outlines the requirements of HIPAA in terms of faxing protected health information and how GFI Software s GFI FaxMaker, an easy-to-use fax

More information

Idaho Form Simplicity Course Outline

Idaho Form Simplicity Course Outline Idaho Form Simplicity Course Outline Optimizing Your Workflow with Form Simplicity Leveraging Form Simplicity s Management Tools for the Broker Optimizing Your Workflow with Form Simplicity Setting Up

More information

User Guide. User Guide Page 1

User Guide. User Guide  Page 1 & User Guide User Guide www.car.org Page 1 Table of Contents About ziptms... 4 Online Real Estate... 4 Forms integration... 4 Seamless e-sign access... 4 About ziplogix... 4 Frequently Asked Questions...

More information

Keep in touch by -- without a computer!

Keep in touch by  -- without a computer! Keep in touch by email -- without a computer! EMAIL MADE EASY! NO COMPUTER REQUIRED. Easy to afford, easy to use, no computer or computer skills required. Using email doesn t have to be any more complicated

More information

5/3/2012. Copyright 2012 The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill. McGraw-Hill. McGraw-Hill. McGraw-Hill

5/3/2012. Copyright 2012 The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill. McGraw-Hill. McGraw-Hill. McGraw-Hill Chapter 03: Basic Application Software Competencies (Page 1 of 2) Discuss common features of most software applications. Discuss word processors and word processing features. Describe spreadsheets and

More information

GROW YOUR BUSINESS ONLINE

GROW YOUR BUSINESS ONLINE GROW YOUR BUSINESS ONLINE ABOUT EXABYTES Exabytes Group is a leading Cloud Solutions Provider that was founded on the principle of providing the best web and ecommerce hosting solutions to its customers.

More information

Tips and Tricks for Organizing and Administering Metadata

Tips and Tricks for Organizing and Administering Metadata Paper 183 Tips and Tricks for Organizing and Administering Metadata Michael G. Sadof, Bedford NH ABSTRACT The SAS Management Console was designed to control and monitor virtually all of the parts and features

More information

Enterprise Content Management is No Joke

Enterprise Content Management is No Joke Simply XML March 2018 Newsletter: Enterprise Content Management is No Joke Big Bodacious BOTs, But... Simply XML Tips and Tricks! March 2018 Simply XML March 2018 Newsletter This is the Simply XML Newsletter

More information

Quantum, a Data Storage Solutions Leader, Delivers Responsive HTML5-Based Documentation Centers Using MadCap Flare

Quantum, a Data Storage Solutions Leader, Delivers Responsive HTML5-Based Documentation Centers Using MadCap Flare A Customer Success Story in Technical Communication Best Practices Quantum, a Data Storage Solutions Leader, Delivers Responsive HTML5-Based Documentation Centers Using MadCap Flare GOALS Reinvent product

More information

administrative control

administrative control administrative control Powerful membership management features Administrative Control Powerful membership management features Member Management Create and manage member types Approve members via email

More information

SECURE DATA EXCHANGE

SECURE DATA EXCHANGE POLICY-DRIVEN SOLUTIONS FOR SECURE DATA EXCHANGE Sending and receiving data is a fundamental part of daily business for nearly every organization. Companies need to share financial transaction details,

More information

Digital Signage The perfect solution from one source.

Digital Signage The perfect solution from one source. Digital Signage The perfect solution from one source. Our new service movebox is a cloud-based software platform that empowers you to manage the contents of digital signage screens and interactive kiosks

More information

2013 Solo and Small Firm Conference

2013 Solo and Small Firm Conference Vermont Bar Association Seminar Materials 2013 Solo and Small Firm Conference 2b) Integrated Practice Management May 16-17, 2013 Basin Harbor Club Vergennes, VT Faculty: Donald Coker DONALD J. COKER, P.A.

More information

Staff Sourcing for Digitization

Staff Sourcing for Digitization Marquette University From the SelectedWorks of Rose Fortier May 11, 2012 Staff Sourcing for Digitization Rose Fortier, Marquette University Available at: https://works.bepress.com/rose_fortier/13/ What

More information

1 Million. About. TMCnet Webinars Mean Business. Website Banner Ads Campaign. Article Viewers. Ideal Marketing Partner

1 Million. About. TMCnet Webinars Mean Business. Website Banner Ads  Campaign. Article Viewers. Ideal Marketing Partner About TMCnet Webinars Mean Business Webinars: Multimedia Lead Generation Machines Webinars provide a unique opportunity to showcase your product or services while making a personal connection with an engaged

More information

SAPERION Records Management

SAPERION Records Management SAPERION Records Management Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the

More information

KEEP YOUR BUSINESS SECURE WITH ESET. Proven. Trusted.

KEEP YOUR BUSINESS SECURE WITH ESET. Proven. Trusted. KEEP YOUR BUSINESS SECURE WITH ESET Proven. Trusted. Trust ESET with your Endpoint protection. A pioneer of the antivirus industry for more than 25 years. 25 Years Securing Endpoints, Creating Efficiencies

More information

NI Smart Cameras PRODUCT FLYER CONTENTS. Have a question? Contact Us.

NI Smart Cameras PRODUCT FLYER CONTENTS. Have a question? Contact Us. Have a question? Contact Us. PRODUCT FLYER NI Smart Cameras CONTENTS NI Smart Cameras Detailed View of ISC-178x Key Features Vision Software Hardware Services Page 1 ni.com NI Smart Cameras NI Smart Cameras

More information

i95dev SAP Connect User Manual

i95dev SAP Connect User Manual Table of Contents i95dev SAP Connect User Manual Version 1.0 www.i95dev.com USA Australia India Copyright 2016 i95dev. All Rights Reserved 1 Table of Contents 1. Introduction... 3 1.1. About this guide...

More information

DIRECTORY SEARCH V3.0 Quick Start Guide

DIRECTORY SEARCH V3.0 Quick Start Guide DIRECTORY SEARCH V3.0 Quick Start Guide Directory Search is an easy-to-use, customizable, Web-based utility that allows you to turn your Active Directory in to a company phone book. The administrator can

More information

What will I learn today?

What will I learn today? What will I learn today? CNG Safe Hierarchy Dashboard Customize Your View Toolbars and Buttons CNG Speed Bar What can We Do with a CNG Document So Many Ways to Search in CNG Sorting How to File in CNG

More information

TOOLS & UTILITIES

TOOLS & UTILITIES EMAIL TOOLS & UTILITIES Choose who you send as, create auto replies for Exchange, get photo IDs on Outlook, Sharepoint and Lync and more www.exclaimer.in Exclaimer Email Alias Manager for Exchange is the

More information

ecopy Barcode Recognition Service

ecopy Barcode Recognition Service ecopy Barcode Recognition Service Version 4.3 for ShareScan Administrator's Guide Part Number: 73-00401 (3/2009) Licensing, Copyright, and Trademark Information The information in this document is subject

More information

EMC Documentum External Viewing Services for SAP

EMC Documentum External Viewing Services for SAP EMC Documentum External Viewing Services for SAP Version 6.0 Administration Guide P/N 300 005 459 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright

More information

5 KEYS TO A WINNING TECHNOLOGY PARTNERSHIP

5 KEYS TO A WINNING TECHNOLOGY PARTNERSHIP CHECKLIST: 5 KEYS TO A WINNING The leadership at FRONTEO, a litigation consulting and ediscovery solutions company that processes terabytes of sensitive client data daily, recognized that their existing

More information

Data safety for digital business. Veritas Backup Exec WHITE PAPER. One solution for hybrid, physical, and virtual environments.

Data safety for digital business. Veritas Backup Exec WHITE PAPER. One solution for hybrid, physical, and virtual environments. WHITE PAPER Data safety for digital business. One solution for hybrid, physical, and virtual environments. It s common knowledge that the cloud plays a critical role in helping organizations accomplish

More information

White Paper: ABBYY Recognition Server Web Service API Example

White Paper: ABBYY Recognition Server Web Service API Example White Paper: ABBYY Recognition Server Web Service API Example By: Joe Hill Published: June 2017 Summary ABBYY Recognition Server converts paper or electronic documents into compressed, searchable, archive

More information

ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information

ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information 1 Getting Started Whether you are a new user or a returning one, to access ithenticate

More information

S t a r t y o u r m o b i l e b u s i n e s s t o d a y MobileMoney

S t a r t y o u r m o b i l e b u s i n e s s t o d a y MobileMoney S t a r t y o u r m o b i l e b u s i n e s s t o d a y » > Dear partner In the last couple of years, not only has the Internet become very present in our lives, the mobile phone market has expanded at

More information

Quick start guide DOC-OEMCS-PP-US-01/01/12

Quick start guide DOC-OEMCS-PP-US-01/01/12 Quick start guide DOC-OEMCS-PP-US-01/01/12 The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this manual is subject to a user license.

More information

Welcome to the PDF Xpansion SDK

Welcome to the PDF Xpansion SDK Welcome to the Xpansion SDK Development Platform Your Application The Xpansion SDK provides a set of APIs enabling you to integrate high-performance /XPS features and functions into your applications and

More information

Using PowerCenter to Process Flat Files in Real Time

Using PowerCenter to Process Flat Files in Real Time Using PowerCenter to Process Flat Files in Real Time 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

CATEGORIES FOR TYPES (CAMBRIDGE MATHEMATICAL TEXTBOOKS)

CATEGORIES FOR TYPES (CAMBRIDGE MATHEMATICAL TEXTBOOKS) CATEGORIES FOR TYPES (CAMBRIDGE MATHEMATICAL TEXTBOOKS) DOWNLOAD EBOOK : CATEGORIES FOR TYPES (CAMBRIDGE MATHEMATICAL Click link bellow and free register to download ebook: CATEGORIES FOR TYPES (CAMBRIDGE

More information

FIRST QUARTER 2018 CHARLOTTE-MECKLENBURG GROWTH REPORT

FIRST QUARTER 2018 CHARLOTTE-MECKLENBURG GROWTH REPORT FOURTH QUARTER HIGHLIGHTS FIRST QUARTER 2018 CHARLOTTE-MECKLENBURG GROWTH REPORT Professional Services and Manufacturing Highlight a Steady First Quarter Charlotte was ranked the No. 3 Metro Area for growth

More information

Intelligent Mobile App Testing

Intelligent Mobile App Testing White Paper Intelligent Mobile App Testing The field of software functional testing is undergoing a major transformation. What used to be an onerous manual process took a big step forward with the advent

More information

Chapter 26 Set up Smart Connect for Search and Store DW 6.10

Chapter 26 Set up Smart Connect for Search and Store DW 6.10 Chapter 26 Set up Smart Connect for Search and Store DW 6.10 The Smart Connect module is designed to have a quick integration to other applications and allow the user to gather information for indexes

More information

PIN Entry & Management

PIN Entry & Management PIN Entry & Management From PIN selection to PIN verification Card issuers and merchants know they can put their trust in MagTek. Whether meeting the growing need for instant, in-branch card and PIN issuance

More information

ADVANCED DRIVER MANAGEMENT IN WINDOWS 7

ADVANCED DRIVER MANAGEMENT IN WINDOWS 7 ADVANCED DRIVER MANAGEMENT IN WINDOWS 7 Device Manager To open Device Manager, we cab right-click on Computer, select Manage, and then select Device Manager from the menu on the left. Device Manager Let's

More information

PineApp Mail Secure SOLUTION OVERVIEW. David Feldman, CEO

PineApp Mail Secure SOLUTION OVERVIEW. David Feldman, CEO PineApp Mail Secure SOLUTION OVERVIEW David Feldman, CEO PineApp Mail Secure INTRODUCTION ABOUT CYBONET CORE EXPERIENCE PRODUCT LINES FACTS & FIGURES Leader Product Company Servicing Multiple Vertical

More information

Remark Office OMR. Demo Tutorials

Remark Office OMR. Demo Tutorials Remark Office OMR Tutorial Overview Demo Tutorials Thank you for downloading a demo version of Remark Office OMR. In order to allow you to sample the functionality in the software, we have included this

More information

Remark Office OMR. Tutorials

Remark Office OMR. Tutorials Remark Office OMR Tutorial Overview Tutorials We want you to be immediately successful with your new software. To that end, we highly recommend that you walk through the tutorials provided here before

More information

Interim Report Q2/2016 Samu Konttinen, CEO SECOND QUARTER REVENUES INCREASE BY 11% FROM PREVIOUS YEAR

Interim Report Q2/2016 Samu Konttinen, CEO SECOND QUARTER REVENUES INCREASE BY 11% FROM PREVIOUS YEAR Interim Report Q2/216 Samu Konttinen, CEO SECOND QUARTER REVENUES INCREASE BY 11% FROM PREVIOUS YEAR AGENDA New CEO Highlights from Q2 Market update Business update Outlook Financials 2 SAMU KONTTINEN

More information