S
SpiderSwamy
Hi plz, tell me how to read MS Word file line by line.
I am able to open the file using the following code.
code:
Dim objWord As Word.Application
Dim objDoc As Word.Document
Dim objTbl As Word.Table
Set objWord = New Word.Application
objWord.Documents.Add
objWord.Visible = True
Set objDoc = objWord.ActiveDocument
Call objWord.Documents.Open(sFilepath, , True, True)
I am able to open the file using the following code.
code:
Dim objWord As Word.Application
Dim objDoc As Word.Document
Dim objTbl As Word.Table
Set objWord = New Word.Application
objWord.Documents.Add
objWord.Visible = True
Set objDoc = objWord.ActiveDocument
Call objWord.Documents.Open(sFilepath, , True, True)