Dann siehe doch bitte mal endlich in der Designer Hilfe nach !
Dort steht
Set notesItem = New NotesItem( notesDocument, name$, value [, specialType% ] )
Parameters
notesDocument
The document on which to create the item.
name$
String. The name of the new item.
value
The value to assign to the new item. The data type of value determines the type of item that Notes creates:
Data type of value Resulting notesItem
String Text item containing the value (if specialType% is used, may be Names, Readers, or Authors)
Array of String Text item containing each element of the value (if specialType% is used, may be Names, Readers, or Authors)
Long, Integer, Double, Single, or Currency Number item containing the value
Array of Long, Integer, Double, Single, or Currency Number item containing each element of the value
Variant of type DATE or NotesDateTime Date-time item containing the value
Array of Variant of type DATE or array of NotesDateTime Date-time item containing each element of the value
NotesItem Item whose data type matches the NotesItem type and whose value(s) match the NotesItem value(s)
Type conversion occurs as necessary. For example, floating-point numeric items are double precision so a value of type Single is converted to Double prior to storage.
specialType%
Optional. Constant of type integer. Indicates if a text item should be of type Names, Readers, or Authors. Must be one of the following constants: NAMES, READERS, or AUTHORS. To use specialType%, the value parameter must be a string or array of strings.
Andreas