M
muyBN
If I have to do a search for 20 pieces of the same text in one command, is
there a way to use the Repeat function, or any other "one-liner" method, for
doing it? In other words, to achieve the same effect as the following but
without having to use a counting variable:
for x=1 to 20
selection.find.execute(text)
next x
....using something like this:
Repeat(selection.find.execute(text))(20)
(I've tried a number of different contortions using the Repeat function but
without any success.)
there a way to use the Repeat function, or any other "one-liner" method, for
doing it? In other words, to achieve the same effect as the following but
without having to use a counting variable:
for x=1 to 20
selection.find.execute(text)
next x
....using something like this:
Repeat(selection.find.execute(text))(20)
(I've tried a number of different contortions using the Repeat function but
without any success.)