View Single Post
  #2   Report Post  
Posted to microsoft.public.word.customization.menustoolbars,microsoft.public.word.docmanagement,microsoft.public.word.formatting.longdocs,microsoft.public.word.newusers
Greg Maxey
 
Posts: n/a
Default Open Doc and Go To

Insert a bookmark where you want the document to open. Lets call it
"OpenHere"

Use something like:
Sub AutoOpen()
ActiveDocument.GoTo What:=wdGoToBookmark, Name:="OpenHere"
'or
Dim oRng As Word.Range
Set oRng = ActiveDocument.Bookmarks("OpenHere").Range
oRng.Select
End Sub




Raymond (REMOVE) wrote:
Hello,

Hope I can get some instruction on how to set a template so that the new
document opens with the cursor located further on in the document at some
book mark. I think maybe using a Go To comand in a macro that runs when the
document starts, but I don't know how to do it...

Please help if you have suggestions...

Thanks!
Raymond