>SELECT @If(@Attachments;5;0) Ho provato a configurare l'agente, ma sono in difficoltà per recuperare i campi (come posso individuarli) oppure se in qualche sito trovo esempi da utilizzare sono riuscito a recuperare una procedura che dovrebbe aiutarmi organizzare le funzioni da inserire nell'agente Dim doc As NotesDocument Dim rtitem As Variant Dim object As NotesEmbeddedObject '...set value of doc... Set rtitem = doc.GetFirstItem( "Body" ) If ( rtitem.Type = RICHTEXT ) Then ' check for attachment in Body item Set object = rtitem.GetEmbeddedObject( "jill.sam" ) If ( object Is Nothing ) Then ' check for attachment in rest of document Set object = doc.GetAttachment( "jill.sam" ) End If End If se qualcuno ha suggerimenti saranno di grande aiuto ">
> |  
configurare un'agente per scaricare gli allegati di posta in cartelle
maurolotus
LOTUS NOTES 7.0

Non posso utlizzare procedure esterne a LOTUS per lo scarico della posta da
una cartella del provider

quindi la posta arriva nella posta in entrata dell\'utente

HO a disposizione la rubrica locale(dell\'utente) di lotus7.0
- sono presenti nei campi Email l\'indirizzo di provenienza
- campo street(personal) la cartella di destinazione degli allegati
- campo from>>SELECT(@Contains(From; "di-net.it"))
- campo attachment >>SELECT @If(@Attachments;5;0)


Ho provato a configurare l\'agente,
ma sono in difficoltà per recuperare i campi (come posso individuarli)

oppure se in qualche sito trovo esempi da utilizzare





sono riuscito a recuperare una procedura che dovrebbe aiutarmi organizzare
le funzioni da inserire nell\'agente



Dim doc As NotesDocument
Dim rtitem As Variant
Dim object As NotesEmbeddedObject
\'...set value of doc...
Set rtitem = doc.GetFirstItem( "Body" )
If ( rtitem.Type = RICHTEXT ) Then
\' check for attachment in Body item
Set object = rtitem.GetEmbeddedObject( "jill.sam" )
If ( object Is Nothing ) Then
\' check for attachment in rest of document
Set object = doc.GetAttachment( "jill.sam" )
End If
End If

se qualcuno ha suggerimenti saranno di grande aiuto


z-ciaooooo


You are here configurare un'agente per scaricare gli allegati d... - maurolotus -
    re : configurare un'agente per scaricare gli alleg... - Giuseppe -