R
Rem
Begining with the first section, I need to search through
the sections for the first section that has an odd page
footer (each section is set for different first page and
even and odd page footers). When the first odd page
footer in the document is reached I can stop the search
and perform some actions in that footer.
I can't simply use something like:
With Selection.Sections(1).Footers_(wdHeaderFooterPrimary)
because I am inserting a textbox in the footer, and this
will not allow that because it essentially opens the
footer in normal view, and I need to be in the footer in
print layout view, as in:
ActiveWindow.View.SeekView = wdSeekPrimaryFooter
Thanks for the help
the sections for the first section that has an odd page
footer (each section is set for different first page and
even and odd page footers). When the first odd page
footer in the document is reached I can stop the search
and perform some actions in that footer.
I can't simply use something like:
With Selection.Sections(1).Footers_(wdHeaderFooterPrimary)
because I am inserting a textbox in the footer, and this
will not allow that because it essentially opens the
footer in normal view, and I need to be in the footer in
print layout view, as in:
ActiveWindow.View.SeekView = wdSeekPrimaryFooter
Thanks for the help