Quote:
Originally Posted by gmayor
You could use a pair of macros attached to buttons on the QAT (Quick Access Toolbar) or keyboard shortcuts http://www.gmayor.com/installing_macro.htm
Code:
Sub Go_To_Next()
Selection.GoTo What:=wdGoToPage, which:=wdGoToNext
End Sub
Sub Go_To_Previous()
Selection.GoTo What:=wdGoToPage, which:=wdGoToPrevious
End Sub
or you could just click the Page icon at the bottom left of the ststus bar.
|
Thank you, I will try that out