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

how create , send appointments microsoft outlook calender?


Comments

Popular posts from this blog

javascript - How to name a jQuery function to make a browser's back button work? -

python - Django-easy-pdf: xhtml2pdf reporting reportlab 2.2+ is required, but 3.0 installed -

collision detection - C++ library for mesh to mesh intersection: what is available? -