Pages

Friday, January 29, 2010

#5 : Bugs I Found : Work around for doc.AppendItemValue command

First in order to understand issues with the "AppendItemValue" command in the NotesDocument Class, you may have to refer to the following post
http://ozinisle.blogspot.com/2010/01/3-bugs-i-found-issues-with-lotusscript.html

The work around would be to use the NotesItem class and its "AppendToTextList" command as illustrated below

    Set item = source.Document.GetFirstItem("MultiValuedField")
    Call item.AppendToTextList(rooms)


:)

2 comments: