Click to See Complete Forum and Search --> : VB & Word


June 3rd, 1999, 03:12 PM
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...

Vlad Chapranov
June 3rd, 1999, 04:45 PM
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

Vlad Chapranov
June 3rd, 1999, 04:52 PM
You can use this to move to the next page:
Word.Application.Browser.Next
Vlad