Is it possible to create an add-in for Excel which accesses/imports a calendar from Outlook? I am using c# in Visual Studio 2010.
Is it possible to create an add-in for Excel which accesses/imports a calendar from
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
it is possible – Excel Add-In is a DLL library and you can do almost everything there. (I believe you already seen the MSDN page about developing add-ins: http://msdn.microsoft.com/en-us/library/bb157876.aspx). On the Outlook side, it is a bit more complicated, but Calendar folder is accessible via Outlook Interop and folder hierarchy. See http://support.microsoft.com/?kbid=310244 and http://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook.folder.aspx
HTH