Salut les Kracks,
J'aimerai savoir si il y a moyen par VBA de tester si l'utilisateur a Outlook ou Lotus note sur son PC:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 If CreateObject("Notes.NotesSession") = True Then Call SendmailbyLotusNote ElseIf CreateObject("Outlook.Application") = True Then Call SendmailbyOutlook Else MsgBox "No setup for this both applications!" End If
Partager