outlook - How to get information from .msg file (IPM.Appointment) C# -
i have outlook appointments saved local drive. how can subject , location appointment takes place in c# without creating outlook application object (on computer outlook not installed!) , without spending money on professional solution?
it perfect if solution made object of type appointmentitem me, example (which not working):
string path = "c:\\appointments\\myappointment.msg" microsoft.office.interop.outlook.appointmentitem appointment = new microsoft.office.interop.outlook.appointmentitem(path);
try using verbatium before string path name. e.g.
string path = @"";
maybe these links help.
http://www.codeproject.com/articles/32899/reading-an-outlook-msg-file-in-c
Comments
Post a Comment