B
bryan
I have a template that has the ability to add/delete files. Works great.
Latest request is to insert another file, however with this file, because of
size I cannot do a section break, only page break as the footer and header
would not allow for enough room. Adding this file(FileA) is fine. When I add
another (FileB)with a section break, the bottom of it gets a 16 pt. font, too
large to remain on 1 page.
The top of file A has 16 pt, bottom of file A has 8pt. File B has 11 pt.
What is the probelm?
2)I have a delete macro which deletes the files, up to 4 currently but, with
this new file it bombs.
I'm assuming because it was not addede with a section. I count how many
files added and then delete that many.
Curernt code to delete:
How do I delete fileA?
Hopefully this is enough info to give you an idea.
Thanks,
Bryan
Latest request is to insert another file, however with this file, because of
size I cannot do a section break, only page break as the footer and header
would not allow for enough room. Adding this file(FileA) is fine. When I add
another (FileB)with a section break, the bottom of it gets a 16 pt. font, too
large to remain on 1 page.
The top of file A has 16 pt, bottom of file A has 8pt. File B has 11 pt.
What is the probelm?
2)I have a delete macro which deletes the files, up to 4 currently but, with
this new file it bombs.
I'm assuming because it was not addede with a section. I count how many
files added and then delete that many.
Curernt code to delete:
Dim rnge As Range
Set rnge = ActiveDocument.Sections.Last.Range
rnge.start = rnge.start - 1
rnge.Delete
How do I delete fileA?
Hopefully this is enough info to give you an idea.
Thanks,
Bryan