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

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

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