V
vekaz
Hi,
I need to get text from all pages except page 1 from a word document. I
guess this can be achieved using Microsoft.Office.Interop.Word.Pages. I found
one way to get pages, but that way requires me to activate Word application:
Microsoft.Office.Interop.Word.Pages pages = doc.ActiveWindow.ActivePane.Pages;
Since I have to parse 2000 documents, I'd like to avoid opening Word for
each document. Is there any other way to populate pages?
Thanks in advance
I need to get text from all pages except page 1 from a word document. I
guess this can be achieved using Microsoft.Office.Interop.Word.Pages. I found
one way to get pages, but that way requires me to activate Word application:
Microsoft.Office.Interop.Word.Pages pages = doc.ActiveWindow.ActivePane.Pages;
Since I have to parse 2000 documents, I'd like to avoid opening Word for
each document. Is there any other way to populate pages?
Thanks in advance