M
Michael Böhnisch
Hi!
I am a newbie to COM+ and Office development and also not familiar with VB. However, using code snippets and documentation I found in the web, I was able to set up and deploy a C++ "Shared Add-In" to Outlook 2002 in Visual Studio .NET 2003 (EA).
I figured out how to implement a working toolbar and button for Outlook that triggers an event callback function when clicked. But now I'm stuck.
Inside the event routine I need to access the body text of each email the user selected in the current folder view:
for ( each email selected ) {
std::string body = email.bodytext;
DoSomething( body );
}
Is there a kind soul outside that could sketch me out how to do this? I would also be grateful for pointers to online documentation or books that cover COM+ and Office add-in development using VC++.
Thank you in advance,
Michael.
I am a newbie to COM+ and Office development and also not familiar with VB. However, using code snippets and documentation I found in the web, I was able to set up and deploy a C++ "Shared Add-In" to Outlook 2002 in Visual Studio .NET 2003 (EA).
I figured out how to implement a working toolbar and button for Outlook that triggers an event callback function when clicked. But now I'm stuck.
Inside the event routine I need to access the body text of each email the user selected in the current folder view:
for ( each email selected ) {
std::string body = email.bodytext;
DoSomething( body );
}
Is there a kind soul outside that could sketch me out how to do this? I would also be grateful for pointers to online documentation or books that cover COM+ and Office add-in development using VC++.
Thank you in advance,
Michael.