P
Peter O'Dowd \(MVP\)
I'm writing an Outlook Add-In, using C# in VS 2005. ( not using VSTO) .
The Add-In uses the shim provided my Microsoft for developing add-ins.
Here's a snippet of the code...
Outlook.Inspector oi = MailItem.GetInspector;
Microsoft.Office.Interop.Word.Document doc =
(Microsoft.Office.Interop.Word.Document)oi.WordEditor;
I need to position the cursor at a certain location in a part of message
body I populate when the mail item is created, hence why I need access to
the WordEditor
Any help greatly appreciated...
Thanks
The Add-In uses the shim provided my Microsoft for developing add-ins.
Here's a snippet of the code...
Outlook.Inspector oi = MailItem.GetInspector;
Microsoft.Office.Interop.Word.Document doc =
(Microsoft.Office.Interop.Word.Document)oi.WordEditor;
I need to position the cursor at a certain location in a part of message
body I populate when the mail item is created, hence why I need access to
the WordEditor
Any help greatly appreciated...
Thanks