LotusScript to C API Programming Guide

rtLib Domino Rich Text Management template
Home
Show details for ContentContent
Purchase
Ready-to-use samples
Show details for Online resourcesOnline resources
Forum
Links
Happy readers

Anonymous

login


 

Hosted by Prominic.NET, Inc.
Main topic: Refreshing view to show toggled subset of docs as now being marked as read

Refreshing view to show toggled subset of docs as now being marked as read (by Normunds Kalnberzins, 01/17/2005 06:17:19 PM)

Sounds a bit similar to the problem of refreshing Image resources once you manipulate them in backend, but I guess in your case there is a workaround. You should do something else to these documents in LS -- say:

get the doc by Noteid,

doc.FIELDDUMMY="1"

doc.removeItem "FIELDDUMMY"

doc.save True, True, True

On the other hand by adding the 3rd "True" to Save you are manipulating Read flag without any calls to C API (at least for the current user). This of course has a downside that you need to edit the document that you probably wanted to avoid.