G Guest Sep 19, 2007 #1 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.
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.
S Stefan Blom Sep 19, 2007 #2 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. -- Stefan Blom Microsoft Word MVP in message news:[email protected]...
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. -- Stefan Blom Microsoft Word MVP in message news:[email protected]...
G Graham Mayor Sep 19, 2007 #3 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 <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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 <>>< ><<> ><<> <>>< ><<> <>>< <>><<>