Bonjour,Avec Shell normalement il trouve tout seul le programme associé à l'extension, il n'est pas besoin de mettre le chemin de l'éxécutble.Autrement une autre Méthode est l'utilisation de l'API ShellExecute

rivate Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As LongConst SW_SHOWNORMAL = 1Sub Test() ShellExecute Me.hwnd, vbNullString, "mailto:nom@domaine.com", vbNullString, "C:\", SW_SHOWNORMALEnd Sub[%sig%]