ouverture d'une mailbox
Bonjour
je recherche une formule qui me permet d'ouvrir une mailbox.
La mailbox est sous lotus
je recherche une formule qui me permet d'ouvrir une mailbox.
La mailbox est sous lotus
Forums Lotus Domino/Notes en Français
http://forum.dominoarea.org/
Dim iMailBoxNr As Integer
Dim se As notessession
Dim dbMail As NotesDatabase
Dim db As NotesDatabase
Set se = New NotesSession
Set db = se.currentdatabase
Set dbMail = New NotesDatabase(db.Server, "mail.box")
iMailBoxNr = 0
Do While Not dbMail.IsOpen
iMailBoxNr = iMailBoxNr + 1
Set dbMail = New NotesDatabase(db.Server, "mail" & Trim(Str(iMailBoxNr)) & ".box")
Loop