This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Agent to add readers field ~Holly Zenboosigenetsi 10.Mar.07 02:57 PM a Web browser Applications Development 7.0.1All Platforms
Try this out.This should work..
Dim session As New NotesSession
Dim doc As NotesDocument
Set doc = session.DocumentContext
Dim newValues( 1 To 2 ) As String
newValues( 1 ) = "User 1"
newValues( 2 ) = "User 2"
Dim readersItem As New NotesItem(doc, "docReaders", newValues, READERS)
Call doc.Save( True, True )