How to open outlook from a COM addin when outlook is not already open??
Printable View
How to open outlook from a COM addin when outlook is not already open??
I can show you to do this through late binding... Needs reference to "Microsft Outlook x.0 Object Library"
VB Code:
Dim objout As Object Set objOut = CreateObject("Outlook.Application") Set objOut = Nothing