Using Lotussript how would you create a new editors field containing a given list of editors in the following fields ( smanager1 , smanager2 , smanager3 )
Using Lotussript how would you create a new editors field containing a given list of editors in the following fields ( smanager1 , smanager2 , smanager3 )
| Answer | Dim NewEditors (1 To 3) As String
NewEditors(1) = Doc.sManager1(0)
NewEditors(2) = Doc.sManager2(0)
NewEditors(3) = Doc.sManager3(0)
Dim authorsItem As New NotesItem( doc, "Editors", NewEditors , AUTHORS) |
| Attachments | -none- |
| Applies to versions | 4.x; 5.x; 6.x |
| FAQ Provided By | andrew.cornes@dominosource.com |
| Credit | |
 |  |
|
|