iNotes "Add to Dictionary" Issue

I have a user who is trying to add words to the personal dictionary in iNotes. Nothing that he adds will stay in the personal dictionary.

I’ve tested my iNotes and I can save words without issue and go back to them in a different session.

I’ve checked his access rights and he has full manager access to his mail db.

Where would I look for the personal dictionary for iNotes? Is it part of the profile document?

Thanks in advance.

Subject: Distionary

The personal dictionary is stored in the $PersonalDictionary profile document. You can always delete and recreate it with some code like so:

Sub Click(Source As Button)

Dim session As New NotesSession

Dim db As NotesDatabase

Dim doc As NotesDocument

Set db=session.CurrentDatabase

Set doc=db.GetProfileDocument(“$personaldictionary”)

Call doc.remove(True)

Msgbox “Profile Document is Successfully Removed”

End Sub

Subject: iNotes “Add to Dictionary” Issue

Thanks for the info. I will look in to this for the user.