-
Example needed please, probably very simple & I will regret asking but...
I have been asked to add code to a command Button on word which will take it to the next page (not bookmark > hyperlink, needs a button on the page).
Any ideas please? I think it's the Word.WdGoToItem.wdGoToPage but I cannot get any help or examples for this.
Thank you :)
-
'Try this
Sub MoveToNextPage()
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Count:=1, Name:=""
End Sub
-
Thank you Shafee,
It seems a lot of people avoid VBA questions on this forumn, even more so on Word, so I am very grateful for your reply!
:) :) :)