Such I have a text file that contain the below lines:
Line 1
Line2 etc
Line 3 etc
Now, I want to read the text file and include the all of line into an array like this:
LineList = Array("Line 1", "Line2 etc", "Line 3 etc")
How can I do this in ms word vba macro?
Thanks.