Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Checking for End of Document in Word VBA

Status
Not open for further replies.

knhall

Technical User
Oct 30, 2000
1
GB
As a newbie, I haven't figured out how to check in a Word VBA macro as to whether I'm at the end of the document.
I'd like to include a check within a Do...While loop to avoid it being an infinite loop.
 
You might try this:

Sub DocEnd()
ActiveDocument.StoryRanges.Item(wdMainTextStory).Select
Selection.EndOf (wdStory)
End Sub

It will position your cursor at the end of the document.

Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top