Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Simple Search And Replace problem
Message
From
04/11/1999 18:40:27
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Simple Search And Replace problem
Miscellaneous
Thread ID:
00287249
Message ID:
00287249
Views:
69
I've run the macro generator and from the code that was generated is as follows.
oWord.Selection.Find.ClearFormatting
oWord.Selection.Find.Replacement.ClearFormatting
WITH oWord.Selection.Find
        .Text = tcSearchFor
        .Replacement.Text = tcReplaceWith
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
EndWith

the last line looks liki
oWord.Selection.Find.Execute Replace:=wdReplaceAll
It's nice that VB has named parameters but VFP does not. After doing a little research I found that Execute has 11 parameters. The 11th Parameter the Replace parameter can not be defined up the find block.

So I endup with the following
oWord.Selection.Find.Execute( ,,,,,,,,,,wdReplaceAll )

Is there an easier way?

TIA
Next
Reply
Map
View

Click here to load this message in the networking platform