PDA

View Full Version : Solved: click button to goto a bookmark



gibbo1715
04-05-2005, 02:03 AM
Sorry guys I think this is simple but i know nothing about word

I need a button (or anything else) on my document than when I click it takes me to another part of my form which is a bookmark

All help appreciated

Gibbo

ok figured it out

Selection.GoTo What:=wdGoToBookmark, Name:="DropDownQ14"
With ActiveDocument.Bookmarks
.DefaultSorting = wdSortByName
.ShowHidden = False
End With

MOS MASTER
04-05-2005, 12:55 PM
Hi, :D



To shorten you?re code:


Selection.GoTo What:=wdGoToBookmark, Name:="DropDownQ14"

?or

ActiveDocument.Bookmarks("DropDownQ14").Select


Enjoy! ;)