View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default how to open a word file to different page no instead of 1st page

Or go to the page number = here page 3?

Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="3"

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


Stefan Blom wrote:
You can use an AutoOpen macro in the attached template. In this simple
example, a bookmark named "test" is selected:

Sub AutoOpen()
Selection.GoTo what:=wdgotobookmark, name:="test"
End Sub

See http://www.gmayor.com/installing_macro.htm.


"Siddu" wrote in message
...
When i clicks on a word file, I want to configure it for different
page no to
open.
Please help me to do the needful.