P
Pablo Cardellino
Hi,
I have a range called "base".; This range boundaries shouldn't move, because
at the end of one loop its text could change. Within the loop, two inner
ranges are determined trough the base.Duplicate method for performing a
series of processing which includes som find actions. One of these ranges,
called "b" matches a pair of characters ("ôo") which are at the end of base
text ("vôo"). The other inner range, called "c" is used for processing
possible characters between b.End and base.End, such as the "s" in "vôos"
(plural of "vôo", which means "flight"). But within this loop base.Text is
just "vôo", so nothing is found within the c range. After this line of code,
aparently nothing to do with base, base.Text is "v":
b.Text = StrConv(Char, vbLowerCase, 8) ' this changes "ôo" by "oo"
Does somebody knows why?
Thanks in advance,
I have a range called "base".; This range boundaries shouldn't move, because
at the end of one loop its text could change. Within the loop, two inner
ranges are determined trough the base.Duplicate method for performing a
series of processing which includes som find actions. One of these ranges,
called "b" matches a pair of characters ("ôo") which are at the end of base
text ("vôo"). The other inner range, called "c" is used for processing
possible characters between b.End and base.End, such as the "s" in "vôos"
(plural of "vôo", which means "flight"). But within this loop base.Text is
just "vôo", so nothing is found within the c range. After this line of code,
aparently nothing to do with base, base.Text is "v":
b.Text = StrConv(Char, vbLowerCase, 8) ' this changes "ôo" by "oo"
Does somebody knows why?
Thanks in advance,