WD2000: Unexpected Result Using Find Command w/o Forward ArgumentID: Q212680
|
If you do not specify a search direction when using the Microsoft Visual Basic for Applications Find property, either the search routine may go to the next instance of a search string or the previous instance, or nothing happens.
This behavior is by design. The search function in Word remembers the last direction and uses this as the default for the next search.
Microsoft provides programming examples for illustration only, without
warranty either expressed or implied, including, but not limited to, the
implied warranties of merchantability and/or fitness for a particular
purpose. This article assumes that you are familiar with the programming
language being demonstrated and the tools used to create and debug
procedures. Microsoft support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to
provide added functionality or construct procedures to meet your specific
needs. If you have limited programming experience, you may want to contact
the Microsoft fee-based consulting line at (800) 936-5200. For more
information about the support options available from Microsoft, please see
the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/
Constant Description
-------- -----------
wdFindAsk After searching the selection or range, Word displays a
message asking whether to search the remainder of the
document.
wdFindContinue The find operation continues when the beginning or end of
the search range is reached.
WdFindStop The find operation ends when the beginning or end of the
search range is reached.
Sub SearchDown()
Selection.Find.ClearFormatting
With Selection.Find
.Text = "Word"
.Forward = True
.Wrap = wdFindAsk
End With
Selection.Find.Execute
End Sub
Sub SearchUp()
Selection.Find.ClearFormatting
With Selection.Find
.Text = "Word"
.Forward = False
.Wrap = wdFindAsk
End With
Selection.Find.Execute
End Sub
Sub SearchEntireDocument()
Selection.Find.ClearFormatting
With Selection.Find
.Text = "Word"
.Forward = True
.Wrap = wdFindContinue
End With
Selection.Find.Execute
End Sub
For more information about using the sample code in this article, please
see the following article in the Microsoft Knowledge Base:
Q212536 OFF2000: How to Run Sample Code from Knowledge Base Articles
For additional information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base:
Additional query words: vb vba vbe
Keywords : kbdta kbdtacode kbwordvba wd2000
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: May 13, 1999