Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Printing On Both Sides of the Paper
Turning Off AutoComplete for Dates
Understanding Auto Line Spacing
Adding Comments to Your Document
Conditional Calculations in Word
Subscriber Cheryl Christofferson recently wrote to complain about changes in Word that result in additional work when using the Go To feature. In earlier versions of Word (Word 95 and before), when the Go To dialog box was displayed, the target you wanted to "Go To" was automatically highlighted, so anything you typed (such as a new page number) automatically replaced what was there and you could easily jump to a new location. Starting with Word 97, however, the target in the Go To tab of the Find and Replace dialog box is not automatically selected. Instead the insertion point is at the beginning of the entry box, with your previous target following the insertion point. Thus, if you want to jump to a new page, you must erase the default target and then type your real target.
Apparently this also bothered several other subscribers, who agreed it was a dumb change on the part of Microsoft. Fortunately, you can modify your version of Word to start with a clean target for your Go To efforts by modifying the command used by Word. Simply follow these steps in Word 97 and later versions:
Sub EditGoTo()
'
' EditGoTo Macro
' Jumps to a specified place in the active document
'
Dialogs(wdDialogEditGoTo).Show
End Sub
The reason for this is because you are redefining an existing Word command. The code shown is the code that Word normally executes for the Go To command.
Sub EditGoTo()
'
' EditGoTo Macro
' Jumps to a specified place in the active document
'
With Dialogs(wdDialogEditGoTo)
.Destination = ""
.Show
End With
End Sub
That's it. From now on when you pull up the Go To tab of the Find and Replace dialog box, the destination (target) of your jump will be blank.
Tip #653 applies to Microsoft Word versions: 97 2000 2002 2003
Add a Professional Finishing Touch! Word includes great tools that allow you to add professional-grade finishing touches to your documents. You can add indexes, tables of contents, and other special tables by using the detailed information available in this volume.