OCR PlugIn ReferenceMethods OCRSaveRecognizedText Scanner ActiveX Control OCRSaveRecognizedText Save the recognized text to text file. Public Function OCRSaveRecognizedText( _ ByVal strTextFile As Integer) as Bool ParameterstrTextFile the path of output file name. Return Value Return true if successful, otherwise return false.Example Visual Basic SyntaxScanner1.OCRRecognizeMode=0Scanner1.OCRStartScan(0, "dictfiles")'after OCRRecognized event firedibresult= Scanner1.OCRSaveRecognizedText("c:\text.txt")