-
VB & Word
I need to access the second page of a word document through Visual Basic. Does anyone know how it can be done? It has to be a property within the Word object itself as opposed to a standard VB property. I have not had any luck determining what that property could be. It has got to be available through some means, but I am at a loss.
Thank you in advance for your help...
-
Re: VB & Word
I don't know how to get second page of the document directly, but I until you find nice solution try this one:
Word.Application.Selection.MoveDown unit:=wdLine, Count:=66
Instead of 66 put quantity of lines you need
Vlad
-
Re: VB & Word
You can use this to move to the next page:
Word.Application.Browser.Next
Vlad