R
Rick
We have an ancient macro written in WordBasic. It has many statements
where it goes to a bookmark:
WordBasic.WW7_EditGoTo Destination:="apple"
One thing I've noticed is that under some circumstances (but not all)
this statement will go to the bookmark and also select the text at that
bookmark. But when I rewrite it in VBA:
Selection.GoTo what:=wdGoToBookmark, Name:="apple"
it doesn't select the text. Any idea what's going on here? Thanks
where it goes to a bookmark:
WordBasic.WW7_EditGoTo Destination:="apple"
One thing I've noticed is that under some circumstances (but not all)
this statement will go to the bookmark and also select the text at that
bookmark. But when I rewrite it in VBA:
Selection.GoTo what:=wdGoToBookmark, Name:="apple"
it doesn't select the text. Any idea what's going on here? Thanks