Any ideas, i have made a previous post about this but i got no replys which gives mthe impression i am doing it wrong
Any tips on how to do this?
essentially i want to automate outlook like this ...
Outlook.Application app = null;
if (Process.GetProcessesByName("OUTLOOK").Count() > 0)
{
app = (Microsoft.Office.Interop.Outlook.ApplicationClass)(Marshal.GetActiveObject("Outlook.Application"));
}
this gives me a outlook object, but what method calls are needed to be able to run a particular macro?
Thank you