B
Bear
Hello:
I'm trying to remove all the "bullet and tab" prefixes from a range
(objList). I have this code:
With objList.Find
.Text = PrefixText
.Replacement.Text = ""
.Execute Replace:=wdReplaceAll
End With
Execution of this code causes Word to repaginate the document. At the end of
a long (300-page) document, this represents a fair chunk of time. Maybe two
seconds. That's not great for a macro that's just supposed to be toggling
bullets on and off.
Is there any way to replace all these without invoking repagination?
Bear
I'm trying to remove all the "bullet and tab" prefixes from a range
(objList). I have this code:
With objList.Find
.Text = PrefixText
.Replacement.Text = ""
.Execute Replace:=wdReplaceAll
End With
Execution of this code causes Word to repaginate the document. At the end of
a long (300-page) document, this represents a fair chunk of time. Maybe two
seconds. That's not great for a macro that's just supposed to be toggling
bullets on and off.
Is there any way to replace all these without invoking repagination?
Bear