Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Word 2000
After many years of use, all of a sudden there is some replace text 'stuck' in the Replace with field. I delete it and it comes back some time latter. For what its worth the text is: \1^032\2 (Which I probably used at some point in the past. Thanks |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
"livetohike" wrote:
Word 2000 After many years of use, all of a sudden there is some replace text 'stuck' in the Replace with field. I delete it and it comes back some time latter. For what its worth the text is: \1^032\2 (Which I probably used at some point in the past. Thanks Do you use some macro that might do a wildcard replacement? The macro could be re-written so it does not mess with the Find dialog... either by re-setting the replacement text when it's finished, or by using Range.Find instead of Selection.Find. Regards, Klaus |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
On Aug 31, 11:15 am, "Klaus Linke" wrote:
"livetohike" wrote: Word 2000 After many years of use, all of a sudden there is some replace text 'stuck' in the Replace with field. I delete it and it comes back some time latter. For what its worth the text is: \1^032\2 (Which I probably used at some point in the past. Thanks Do you use some macro that might do a wildcard replacement? The macro could be re-written so it does not mess with the Find dialog... either by re-setting the replacement text when it's finished, or by using Range.Find instead of Selection.Find. Regards, Klaus Yes, that was it! I don't know what Range.Find is so I added the two lines at the bottom of the macro. Thanks. Sub ConvertWrap() With Selection.Find .Text = "([!^013])^013([!^013^t])" .Replacement.Text = "\1^032\2" .Forward = True '.Wrap = wdFindContinue .Wrap = wdFindAsk .Format = False .MatchCase = False .MatchWholeWord = False .MatchAllWordForms = False .MatchSoundsLike = False .MatchWildcards = True .Execute Replace:=wdReplaceAll 'I added these two lines .Text = "" .Replacement.Text = "" End With End Sub |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to replace "enter character" with "space character" in msword | Microsoft Word Help | |||
Search and replace blank cells with "N/A" within a Word Table | Tables | |||
how do you get "Find & Replace" to stop pooping up while typing | Microsoft Word Help | |||
"find" and "search/replace" modes | Microsoft Word Help | |||
Can I print the AutoCorrect "Replace text as you type" list? | Microsoft Word Help |