adding formatted footer line to existing footer

M

mark

Given a document that has a right-aligned footer, I need
to put an additional left-aligned footer into the same
document.

something like:

activedocument.footer = activedocument.footer & chr(10)
& "next line of footer"

where the original footer is right aligned, and the new
line is left aligned.

How can this be done?

thanks.
Mark
 
J

Jean-Guy Marcil

mark was telling us:
mark nous racontait que :
Given a document that has a right-aligned footer, I need
to put an additional left-aligned footer into the same
document.

something like:

activedocument.footer = activedocument.footer & chr(10)
& "next line of footer"

where the original footer is right aligned, and the new
line is left aligned.

The easiest would be to have a left-aligned footer, set a right-aligned tab
on the right margin, tab to it for the first line. Then, when you add the
second line, it will be left aligned by default.

Otherwise you could use a style using frames for the second line, but that
might be more difficult than the above.

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
[email protected]
Word MVP site: http://www.word.mvps.org
 
Top