I know that NotesRichTextNavigator was buggy with early versions of 6, but is there also a known bug in 6.5.1?
I have searched the forum, and I can not get NotesRichTextNavigator to work for the life of me. I have tried running several ways, and it always returns Nothing.
The code to SET the navigator is below (obviously, you don’t need the entire script, since it is irrelevant) It is run from an action on the view.
Am I setting it wrong? Any help would be much appreciated.
TIA
'declare
Dim session As New NotesSession
Dim db As NotesDatabase
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Dim rtItem As NotesRichTextItem
Dim rtNav As NotesRichTextNavigator
'set some stuff
Set db = session.CurrentDatabase
Set dc = db.UnprocessedDocuments
Set doc = dc.GetFirstDocument
Set rtItem = doc.GetFirstItem(“Body_RichText”)
set rtNav = rtItem.CreateNavigator '** This returns Nothing