E
Esteban
Does anyone know how to use the Find.Replace function
within Word VBA to find paragraph FirstLineIndents and
change them to tabs?
When I use this function, it simply selects any
paragraph that has the specified FirstLineIndent and
replaces the entire paragraph with a tab, as opposed to
simply replacing the indent with the tab.
VBA does the same regardless of whether I specify the
search criterion as text (e.g., text = ""), or as a
paragraph format (e.g., paragraph.format = "") within the
Find fields.
I suspect I may have to create a custom style sheet and
use the Find.Replace feature to globally replace one style
for another.
However, is there a way that I can simply modify the
Find.Replace code so that it does not delete the entire
paragraph, but rather only replace the indent with a tab?
Thank you...
within Word VBA to find paragraph FirstLineIndents and
change them to tabs?
When I use this function, it simply selects any
paragraph that has the specified FirstLineIndent and
replaces the entire paragraph with a tab, as opposed to
simply replacing the indent with the tab.
VBA does the same regardless of whether I specify the
search criterion as text (e.g., text = ""), or as a
paragraph format (e.g., paragraph.format = "") within the
Find fields.
I suspect I may have to create a custom style sheet and
use the Find.Replace feature to globally replace one style
for another.
However, is there a way that I can simply modify the
Find.Replace code so that it does not delete the entire
paragraph, but rather only replace the indent with a tab?
Thank you...