Click here to Skip to main content
15,883,705 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
I build a ATL Outlook(Word) Add in Project.
(I followed this article http://msdn.microsoft.com/en-us/library/ee941475.aspx[^])

Now, I want to input a text in Outlook new mail editor(or Word Document) when I click ribbon button.

Here's my code:
C++
void CConnect::InsertTest()
{
   CComPtr<word::_document xmlns:word="#unknown"> spDoc;
   CComPtr<outlook::_application xmlns:outlook="#unknown"> spAppO;
   CComPtr<word::_application> spAppW;
   BSTR prop = SysAllocString(L"http://www.msn.com");
   //ATLASSERT(spDoc);          <- error
   //HRESULT hr = spAppW->get_ActiveDocument(&spDoc);        <- Error
}
</word::_application></outlook::_application></word::_document>

now, it's everything what I know. lol

Does anyone know how to do it?
please help. I already have wasted a lot of time.
Posted
Updated 12-May-11 19:22pm
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900