B
Bear
I use a lot of this:
if objPara.Style = "LN" then...
But now I'm asked to add aliases to my standard set of styles. This will
break a lot of my code.
My first thought is to build a common function that will parse out each
segment of the style name, then evaluate each segment (Select Case), and pass
back the appropriate segment.
Does anyone have any code they'd like to share? I've explored Array, but
aliases aren't formatted that way.
Or is there a way to test a style that avoids this problem?
Bear
if objPara.Style = "LN" then...
But now I'm asked to add aliases to my standard set of styles. This will
break a lot of my code.
My first thought is to build a common function that will parse out each
segment of the style name, then evaluate each segment (Select Case), and pass
back the appropriate segment.
Does anyone have any code they'd like to share? I've explored Array, but
aliases aren't formatted that way.
Or is there a way to test a style that avoids this problem?
Bear