Forum Discussion
Dmitry_Nikolaev
Staff
15 years agoHi Peleg and Stephen,
You can use the Word Object model and work with the application via COM:
See the following MSDN Library article to learn how to do this.
You can use the Word Object model and work with the application via COM:
Set WordApp = Sys.OleObject("Word.Application")
WordApp.Visible = True
WordApp.Documents.Open("C:\Document.docx")
Log.Message(WordApp.ActiveDocument.Content)
searching the document text for a specific instance of text
See the following MSDN Library article to learn how to do this.