B
Bob S
I have MS Office 2003 and when I press Page Down nothing happens. Can
someone tell me how to fix this?
Thanks.
someone tell me how to fix this?
Thanks.
Jay Freedman said:Hi Bob,
You can assign the PageDown key to this macro. On pages other than the
last,
it doesn't move the selection to quite the same location, but it's the
best
I could do...
Public Sub MyPageDown()
If Selection.Information(wdActiveEndPageNumber) _
= ActiveDocument.Range.Information( _
wdActiveEndPageNumber) Then
Selection.EndKey unit:=wdStory
Else
Selection.MoveDown unit:=wdScreen, _
Count:=1, Extend:=wdMove
End If
End Sub