Vediamo se ti posso aiutare io. Ecco un esempio di come potrebbe essere fatto un agente script che aggiorna i documenti presenti in una vista Dim session as New NotesSession Dim db as NotesDatabase dim vista as NotesView dim doc as NotesDocument Set db=session.CurrentDatabase Set vista=db.GetView("... nome della vista...") Set doc=vista.GetFirstDocument Do Until doc is Nothing Call doc.ComputeWithForm(False,False) Call doc.Save(True,False) Set doc=vista.GetNextDocument(doc) Loop
|