Copy Reader Field data to another Read Field

I am creating a new document from an existing document and need to copy the values from on Reader Field the new document Reader Field. I tired newDoc.DocReaders = doc.DocReaders(0) however it only added the first name to the new Reader Field.

What method should I use to get all names in the Reader Field over to the new one?

Subject: Copy Reader Field data to another Read Field

The suffix (0) indicates that you only want the first value in the array.

You should do a CopyItem instead. Something along the lines of:

Set item = doc.GetFirstItem(“DocReaders”)

Call newDoc.CopyItem(item, “DocReaders”)

Subject: RE: Copy Reader Field data to another Read Field

Thanks Martha that will do.