Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Word automation Replace
Message
 
 
To
08/09/2021 01:44:24
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
01682265
Message ID:
01682270
Views:
52
>>Hi, i need to know if i can make a replace in a word document when the text i need to change is inserted into a box... I can replace all text not in a box with this code
>>
>>loWord.Application.Selection.Find.Execute(lcOldText,,,,,,.T.,wdFindContinue,,lcNewText,wdReplaceAll)
>>
>>But this doesn't work with in box text
>>
>>Thanks
>
>Something of this sort:
>
>loDoc = loWord.ActiveDocument
>FOR EACH loShape IN loDoc.Shapes
> loShape.TextFrame.TextRange.Find.Execute(lcOldText,,,,,,.T.,wdFindContinue,,lcNewText,wdReplaceAll)
>ENDFOR
>
>Also best to avoid working on selection, instead try to work on range objects.

It works. Thanks for the example.
Previous
Reply
Map
View

Click here to load this message in the networking platform