In a form, I have two Rich Text. 1 Editable and one computed. When the user save the document, I copy the Editable Rich Text field into the computed one. Everything is working fine. (See code Bellow)
(PostSave)
…
Set rtitemA = doc.GetFirstItem( “CCFITCommentsC” )
Set rtitemB = doc.GetFirstItem( “CCFITCommentsCmpC” )
“Ignoring Portion of Document that Uses a Feature from Another Version of Notes” When Opening Doc
Their Workaround is to use a Control Access Section. My problem is that my editable and Computed rich text field is already in a Control Accress Section.
At the moment, I put my computed rich text field to Editable but I have to find a way to block user to be able to modify it.
I’m going to add another workaround to this technote.
The problem (according to the technote) occurs when you do a back-end save of the document that you obtained with uidoc.Document. You only showed the code that manipulates the rich text field, so I can’t be sure that’s what you’re doing, but let’s suppose it is.
Don’t do a back-end save (NotesDocument.Save) and you should not have the problem. Do a front-end save (NotesUIDocument.Save) or don’t save at all.
If you’re only saving so that you can close and reopen the document to show the changed rich text, it is not necessary to save. See this posting.