![]() |
|
#1
|
|||
|
|||
|
Code:
Sub FindUntiltheEndofDocument()
Dim oRange As Range
Set oRange = ThisDocument.Range(0, 0)
With oRange.Find
.ClearFormatting
.MatchCase = False
.Text = "cat"
While .Execute
oRange.Select
'' Why is it needed?
oRange.Collapse Direction:=wdCollapseEnd
Wend
Set oRange = Nothing
End With
End Sub
Code:
oRange.Collapse Direction:=wdCollapseEnd Why is the range needed to be collapsed to the end then? |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Expand/Collapse default settings not retained | PatP | Outlook | 8 | 07-25-2013 11:44 PM |
| Expand/Collapse in Html Word File | kitkat0910 | Word | 0 | 10-10-2012 03:42 AM |
| multiple text boxes collapse on move | apricoti | Word | 2 | 01-26-2012 05:55 PM |
Drop-Down Menu, show-hide, expand-collapse???
|
300zxmuro | Word | 1 | 02-27-2011 03:02 PM |
Expand & Collapse Folders in "Unread Mail"
|
WoodstockCEO | Outlook | 3 | 02-14-2010 09:11 PM |