This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit 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 )