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)
:)
thanks! this was exactly what I was looking for.
ReplyDeleteYou are welcome :)
ReplyDelete