Can I make C# start Outlook in the code?
In VB6 we use object ‘Outlook.Application’ and write:’
Set oOutlook = CreateObject("Outlook.Application")
Set oNameSpace = oOutlook.GetNamespace("MAPI")
Set oInbox = oNameSpace.Folders(1)
'Set oInbox = oInbox.Folders("Inbox")
oInbox.Display
'oOutlook.Quit 'Close All Outlook copies
Copy/Paste from link: http://www.ozgrid.com/forum/showthread.php?t=73886
If you just want to start the outlook; using System.Diagnostics.Process would be the easiest way. 🙂