Salut,Voici un exemple

im doc As NotesDocument' Initialisation de l'objet doc.....call doc.AppendItemValue( "NomDeMonChamp", "Toto" )call doc.AppendItemValue( "NomDeMonChamp", "Titi" )Call doc.Save( False, True )Tu peux aussi décidé de passer un tableauDim TabVal (1) as stringDim doc As NotesDocument' Initialisation de l'objet doc.....TabVal(0) = "Toto"TabVal(1) = "Titi"call doc.AppendItemValue( "NomDeMonChamp", TabVal)Call doc.Save( False, True )