Submitted by Robert F Harwood on Jan 13, 2012 1:34:38 PM

Re: Writing Code to Deal With Multivalued Data

checked

Submitted by Idom Chen on Jul 9, 2011 1:35:45 PM

Re: Writing Code to Deal With Multivalued Data

thank u for explaining so clearly with details. a minus correction: AppendToTextList is not a method of NotesDocument but is of NotesItem as documented.

Submitted by Al Soltan on Feb 4, 2011 12:02:45 PM

Re: Writing Code to Deal With Multivalued Data

I am using a dynmaic array to get all date/time values in a variant array which works fine but I am not able to assign the array to a multivalue date/time field on the form using the line you specified in this article.

doc.ReplaceItemValue "AllDates", callArray

or the following:

Set testitem = doc.GetFirstItem("AllDates")

Set item = doc.ReplaceItemValue("AllDates", callArray)

Is it different to have day/time value in the array?