Se non devi usare Automazione sul componente Outlook... prova questo codice:
On Error Resume Next
Dim mMSO As Object
Set mMSO = GetObject(, "Outlook.Application") ' Determine if Outlook is open
If Err <> 0 Then 'If Not open it
Call Shell(SysCmd(acSysCmdAccessDir) & "OUTLOOK.EXE")
End If
Questa suggerita funziona...