I have a macro in my word doc that runs on opening to put the cursor at a bookmark. I want to do the same in a .dot template, but can't seem to make it work. Can someone tell me how to do this? Below is the code that runs in the .doc file:
Private Sub Document_New()
End Sub
Private Sub Document_Open()
Selection.GoTo What:=wdGoToBookmark, Name:="starthere"
End Sub
Private Sub Document_New()
End Sub
Private Sub Document_Open()
Selection.GoTo What:=wdGoToBookmark, Name:="starthere"
End Sub