| Back | Main view

What's New in latest Notes interface (NSF IMiS design elements) release

Product:IMiS/Scan, IMiS/View, IMiS/OCR Client
Release:1.95.3
Date:10/04/2001

Case:

Description:

There are three major improvements in latest release of IMiS NSF design elements:

1. There is new Action under "IMiS Menu" button called "OCR attachment...". It means that with IMiS/OCR client it is possible to OCR also any attachment in Notes document and not just IMiS objects. Code looks for every attachment in current Notes document and then user just have to select appropriate attachment for OCR.

2. There is new checkbox setting called "Use default object description (no dialog)" in "IMiS Setup" profile document which is part of every IMiS enabled NSF. If checkbox is selected (and default object description typed in) than no dialog for object description is displayed to an user after scan process. Default object description is used for every new IMiS object created in this database. This behaviour is implemented also in "Import image..." action under "IMiS Menu" button.

3. There is new procedure/sub called IMiSViewObject in IMiSGlobSprem Script Library. It needs only NotesDocument object to be passed as parameter and than it behaves same as View action on Notes document. The only difference is that it provides IMiS object only in read mode. So developers can use it wherever they find it useful in their applications. For sample purposes there is "View" action written in new "IMiS View action sample" view in template NSF. It enables users to select and view IMiS objects from view action and they do not need to open Notes document any more. Code looks like this:

(Options) event
Use "IMiSGlobSprem"

Click event
Sub Click(Source As Button)
     Dim session As New NotesSession
     Dim db As NotesDatabase
     Dim Seldoc As NotesDocument    
     
     Set db = session.CurrentDatabase
     Set collection = db.UnprocessedDocuments
     
     If collection.Count <> 1 Then
          Msgbox "Only one Notes document can be selected."
          Exit Sub
     End If
     
     Set Seldoc = collection.GetFirstDocument
     
     Call IMiSViewObject(SelDoc)
End Sub

Related Documents:



| Back | Main view