A macro that worked well in Word 97 is now completely ignored in this version.
The macro finds a specific bookmark and then moves the cursor to that position on opening or on creating a new document based on the template. What do I need to change?
Private Sub Document_New()
‘
‘ BioStart Macro
‘
Selection.GoTo What:=wdGoToBookmark, Name:=”BioStart”
With ActiveDocument.Bookmarks
.DefaultSorting = wdSortByName
.ShowHidden = False
End With
End Sub
Private Sub Document_Open()
‘
‘ BioStart Macro
Selection.GoTo What:=wdGoToBookmark, Name:=”BioStart”
With ActiveDocument.Bookmarks
.DefaultSorting = wdSortByName
.ShowHidden = False
End With
End Sub
Thanks