View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
GS80 GS80 is offline
external usenet poster
 
Posts: 26
Default Embedded word object

Hi,

Is it possible to access the embedded word object in an Excel file via code.
I'm using the C# and trying to access a word object in an excel file using
the following code.

Microsoft.Office.Interop.Word.Document doc = new
Microsoft.Office.Interop.Word.DocumentClass();
doc =
(Microsoft.Office.Interop.Word.Document)_excelData WS.Shapes.Item("WordDoc").OLEFormat.Object;

I get errors relating to casting when trying this so would like to know if
anyone has done this before and how they've done it?

All help is greatly appreciated.

Thanks in advance