Consultor Eletrônico



Kbase P39006: How to interface with 'Lotus Notes' ?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   15/10/2008
Status: Verified

GOAL:

How to interface with 'Lotus Notes' ?

GOAL:

How to access Lotus Notes functions from Progress 4GL

FIX:

Starting with Release 5.0.2b, Lotus Notes (and it's back-end companion Lotus Domino) has a COM interface. This can easily be called from the 4GL using the standard COM object automation:

DEFINE VARIABLE objNotes AS COM-HANDLE.
CREATE "Lotus.NotesSession":U objNotes NO-ERROR.

will give you a COM handle to a Notes session.

From here on you can call the APIs to have Notes (or Domino) perform various tasks using the regular COM interface.