I am trying to design an agent, which would read an MS Word (.doc) file content and create respective documents in lotus notes documents.
The content of the MS word document will have a parser as Pilcrow symbol or “~” tilde symbol, the parser will indicate the end of document.
The issue i am facing now, is the entire content of the MS Word file needs to read in single line of code.
if i go for looping then the performance is very poor.
i tried to use getobject(,“Word.Application”) and try to ran on the server console but it is keep on running or i am getting an “automation object error”.
my requirements:
1. I need to fetch the data in word along with the same style and format(the space, paragraph intend everything)
2. Performance should be good
3. I should be able to parse the data easily
Please do provide your valuable comments and codes.