The current Notes documentation may not make it clear to users of the COM interface that they must add extra steps right from the start of coding in COM.
After creating a session, a COM user must add a 'Call session.initialize' to their code to get any other Notes code to work. The documentation should be updated as shown below.
1. Changes to the topic "NotesSession class":
To access the current session, use New.
Syntax
Dim variableName As New NotesSession
OR
Set notesSession = New NotesSession
To access the current session from a NotesDatabase object, use the "Parent property" in NotesDatabase.
added to Rnext: To access the current session through COM, see "Creating a session object" and "Initializing a session."
added to Rnext: To access the current session through OLE, see "Using OLE."