Calendar Preview entries showing numbers

I have a strange issue with one of my users. I just converted her mailfile to mail8.ntf using the Load Convert command. When we look at her calendar now, it is showing numbers instead of what the meeting is. If she opens up the calendar entry, all the data show correctly.

Has anyone seen this before? I tried refreshing the views to no avail.

Thanks

Subject: Calendar Profile

Try deleting the calendar profile (it will be recreated once the user reopens their mail file). Send this button to the user, have them click it, and then close and reopen their mail file. Here are the steps/code to do it:

  1. Create a new mail message.

  2. Select Create > Hotspot > Button.

  3. Add a label for the button such as “Delete Profile”.

  4. Set it to Run > Client. Select “LotusScript” instead of “Formula”.

  5. Paste the below code accordingly as required

  6. Send this email to the user having the problem, instructing the user to click the button. When user clicks the button the profile document will be deleted.

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(“CalendarProfile”)

Call doc.remove(True)

Msgbox “Profile Document is Successfully Removed”

End Sub

Subject: Danke

perfect fix…

Subject: Thanks Andrew

Thank you for the reply. The user had to move to a different location. Once she got to her new location, everything was fine. Something must’ve just needed some time to update.