Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Numbering / August 2004

Tip: Looking for answers? Try searching our database.

Back from a find

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Rees - 02 Aug 2004 00:06 GMT
Is there a keyboard combination that will take me back from a Find to the
previous insertion point?  Thanks.
Stefan Blom - 02 Aug 2004 12:04 GMT
You can use SHIFT+F5 to go to the previous edit point in the document.

Signature

Stefan Blom

> Is there a keyboard combination that will take me back from a Find to the
> previous insertion point?  Thanks.
Rees - 02 Aug 2004 14:03 GMT
Thanks.  I am asking, however, about the previous insertion point rather
than the previous edit point.

> You can use SHIFT+F5 to go to the previous edit point in the document.
>
[quoted text clipped - 4 lines]
> to the
> > previous insertion point?  Thanks.
Stefan Blom - 02 Aug 2004 14:13 GMT
I'm not sure I understand the difference. Do you mean go back to the
previous occurrence of the word you are searching for? If this is the
case, do the following: In the Find dialog box, click More. Under
"Search", specify "Up" rather than All, and then click "Find Next".

Does that help?

Signature

Stefan Blom

> Thanks.  I am asking, however, about the previous insertion point rather
> than the previous edit point.
[quoted text clipped - 7 lines]
> > to the
> > > previous insertion point?  Thanks.
Rees - 03 Aug 2004 01:07 GMT
I am in a document.  The cursor insertion point is somewhere.  I do a Find.
It takes me somewhere else.  I want to go back to the cursor insertion
point.

> I'm not sure I understand the difference. Do you mean go back to the
> previous occurrence of the word you are searching for? If this is the
[quoted text clipped - 20 lines]
> > > to the
> > > > previous insertion point?  Thanks.
Greg Maxey - 03 Aug 2004 01:34 GMT
Rees,

This might work for you.  It inserts a bookmark at your insertion point and
then returns the bookmark and deletes it after you eixt the find dialog.

Sub FindAndGoBack()

' Macro created August 2, 2004 by Gregory K. Maxey

Dim dlgFind As Dialog

Set dlgFind = Dialogs(wdDialogEditFind)

 With ActiveDocument.Bookmarks
    .Add Range:=Selection.Range, Name:="IPMark"
    .DefaultSorting = wdSortByName
    .ShowHidden = True
 End With
 With dlgFind
    .Find = ""
    .Show

 End With

 Selection.GoTo What:=wdGoToBookmark, Name:="IPMark"
 ActiveDocument.Bookmarks("IPMark").Delete
End Sub

Signature

Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in gmaxey@whamspammvps.org

> I am in a document.  The cursor insertion point is somewhere.  I do a
> Find. It takes me somewhere else.  I want to go back to the cursor
[quoted text clipped - 21 lines]
>>>>> Is there a keyboard combination that will take me back from a
>>>>> Find to the previous insertion point?  Thanks.
Rees - 03 Aug 2004 13:51 GMT
Thanks.  Won't do the trick, but I'll find a workaround.  I would have sworn
there was a keyboard combination for this.

> Rees,
>
[quoted text clipped - 55 lines]
> >>>>> Is there a keyboard combination that will take me back from a
> >>>>> Find to the previous insertion point?  Thanks.
Greg - 03 Aug 2004 14:55 GMT
Rees,

What part of the trick won't it do?  Just curious.  There
is room for improvement, but it seems to do what you ask.  
Basically you have to somehow mark the insertion point
before going off on a find venture and then provide some
means of going back to it.

In actual use, I would probably split the macro.  Use
EditFind1 to place the bookmark and execute the find and
FindGoBack to return to the insertion point and deltete
the bookmark. You could assign both to a keyboard shortcut.



Sub EditFind1()

' Macro created August 2, 2004 by Gregory K. Maxey

Dim dlgFind As Dialog

Set dlgFind = Dialogs(wdDialogEditFind)

 With ActiveDocument.Bookmarks
    .Add Range:=Selection.Range, Name:="IPMark"
    .DefaultSorting = wdSortByName
    .ShowHidden = True
 End With
 
 On Error GoTo ErrHandler
 With dlgFind
    .Find = ""
    .Show
 End With

End
ErrHandler:
 MsgBox "Word has finished searching the document."
End Sub

Sub FindGoBack()
 Selection.GoTo What:=wdGoToBookmark, Name:="IPMark"
 ActiveDocument.Bookmarks("IPMark").Delete
End Sub

 
>-----Original Message-----
>Thanks.  Won't do the trick, but I'll find a workaround.  I would have sworn
[quoted text clipped - 62 lines]
>
>.
Rees - 03 Aug 2004 15:04 GMT
I really do appreciate your interest.  I haven't made the use clear, and
this is not close to workable given the use.  I have a satisfactory
workaround in place.  If you are just intellectually interested in the
actual use and the reason this doesn't work, I'd be happy to continue the
discussion.  Thanks again.

> Rees,
>
[quoted text clipped - 118 lines]
> >
> >.
Greg - 03 Aug 2004 19:17 GMT
Rees,

Yes, I am interested.
>-----Original Message-----
>I really do appreciate your interest.  I haven't made the use clear, and
[quoted text clipped - 127 lines]
>
>.
Rees - 04 Aug 2004 09:33 GMT
This is a toolbar made for reviewing long, complex documents.  Some of the
toolbar items are searches.  Edits are never or rarely made, so <Shift-F5>
is not relevant.  So the user will hit toolbar items and sometimes cursor
down and review conventionally, then hit another toolbar item.  Often on
hitting a toolbar item he will want to then return to where he was, and
continue the review from there.  But the toolbar item might have taken him
20 pages away.  Needs an easy way to get back.  An analogy is the nice
implementation in Word for getting back after a link from a TOC.

> Rees,
>
[quoted text clipped - 148 lines]
> >
> >.
Suzanne S. Barnhill - 04 Aug 2004 15:04 GMT
If the user has not moved the insertion point, Spacebar + Backspace will do
the trick. That is, when you use Find, the insertion point is moved to the
found item. But if you use the scroll bar (not the mouse or cursor) to
scroll up/down and view adjacent text, the insertion point is not moved, and
any typing will be inserted at the insertion point and will bring it back
into view. This would be a user training issue, however, since it would
require users to use the scroll bar (elevator only--not the arrow keys) so
as not to move the insertion point.

Signature

Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

> This is a toolbar made for reviewing long, complex documents.  Some of the
> toolbar items are searches.  Edits are never or rarely made, so <Shift-F5>
[quoted text clipped - 157 lines]
> > >
> > >.
Chad DeMeyer - 04 Aug 2004 16:15 GMT
Rees,

Ctrl + Alt + Z is the shortcut key combo for "Go Back", which moves to the
previous selection regardless of whether edits were made.  Should be exactly
what you need.

Regards,
Chad

> This is a toolbar made for reviewing long, complex documents.  Some of the
> toolbar items are searches.  Edits are never or rarely made, so <Shift-F5>
[quoted text clipped - 157 lines]
> > >
> > >.
Greg - 04 Aug 2004 19:37 GMT
Rees,

OK.  I still think you could assign these two macros to
the toolbar.  

Find() - inserts a bookmark at the insertion point then
goes off and does the find.

GoBack() - Returns to and deletes the bookmark.

Sub Find()

Dim dlgFind As Dialog
Set dlgFind = Dialogs(wdDialogEditFind)

 With ActiveDocument.Bookmarks
    .Add Range:=Selection.Range, Name:="IPMark"
    .DefaultSorting = wdSortByName
    .ShowHidden = True
 End With
 
On Error GoTo ErrHandler
 With dlgFind
    .Find = ""
    .Show
 End With

End
ErrHandler:
 MsgBox "Word has finished searching the document."
End Sub

Sub GoBack()
 Selection.GoTo What:=wdGoToBookmark, Name:="IPMark"
 ActiveDocument.Bookmarks("IPMark").Delete
End Sub

>-----Original Message-----
>This is a toolbar made for reviewing long, complex documents.  Some of the
[quoted text clipped - 160 lines]
>
>.
Chad DeMeyer - 03 Aug 2004 18:43 GMT
Rees,

From Microsoft Word help:
"Return to a previous editing location
Word keeps track of the last three locations where you typed or edited text."

To return to a previous editing location, press SHIFT+F5 until you reach the location you want.

Note:  You can also use this feature to return to a previous location after saving your document.

Regards,

Chad

> I am in a document.  The cursor insertion point is somewhere.  I do a Find.
> It takes me somewhere else.  I want to go back to the cursor insertion
[quoted text clipped - 24 lines]
> > > > to the
> > > > > previous insertion point?  Thanks.
Rees - 11 Aug 2004 15:15 GMT
Thanks for the several responses.  Ctrl-Alt-Z is the combination I was
looking for.  Are these published in a single place?
Chad DeMeyer - 12 Aug 2004 17:45 GMT
In Word help, look up "keyboard shortcuts", then look for subcategory "Find
text and navigate through documents".

Regards,
Chad

> Thanks for the several responses.  Ctrl-Alt-Z is the combination I was
> looking for.  Are these published in a single place?
Dayo Mitchell - 12 Aug 2004 18:46 GMT
See also:
http://word.mvps.org/faqs/general/CommandsList.htm

> In Word help, look up "keyboard shortcuts", then look for subcategory "Find
> text and navigate through documents".
[quoted text clipped - 4 lines]
>> Thanks for the several responses.  Ctrl-Alt-Z is the combination I was
>> looking for.  Are these published in a single place?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.