![]() |
#1
|
|||
|
|||
![]()
I am trying to split a document by every 2 pages and name the files using the text from the footer, but I keep getting an error saying it is not a valid filename. There are no special characters in the footer and when I hardcode the same text as a filename into the DocName variable, it works just fine. Any help would be appreciated. Here is my code:
Dim PageCount As Integer Dim DocCount As Integer Dim NextPage As Integer Dim MaxDocs As Integer Dim DocName, ftStr As String ActiveDocument.Repaginate MaxDocs = (ActiveDocument.BuiltInDocumentProperties(wdProper tyPages)) / 2 PageCount = 1 For DocCount = 1 To MaxDocs ftLen = Len(ActiveDocument.Sections(DocCount).Footers(wdHe aderFooterPrimary).Range) ftStr = Trim(Left(ActiveDocument.Sections(DocCount).Footer s(wdHeaderFooterPrimary).Range.Text, ftLen - 47)) & ".pdf" NextPage = PageCount + 1 DocName = CStr(ftStr) ActiveDocument.ExportAsFixedFormat OutputFileName:= _ ActiveDocument.Path & "\" & DocName, ExportFormat:= _ wdExportFormatPDF, OpenAfterExport:=False, OptimizeFor:= _ wdExportOptimizeForPrint, Range:=wdExportFromTo, From:=PageCount, To:=NextPage, _ Item:=wdExportDocumentContent, IncludeDocProps:=True, KeepIRM:=True, _ CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _ BitmapMissingFonts:=True, UseISO19005_1:=False PageCount = PageCount + 2 Next DocCount |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
exporting images with correct file names | lister | PowerPoint | 1 | 03-12-2014 12:27 AM |
Exporting/printing MS Project File containing Gantt Chart to an Image | ms_user | Project | 7 | 04-02-2013 02:50 AM |
![]() |
sharke | Outlook | 2 | 09-06-2010 07:40 PM |
Exporting to PDF and keeping file size down | CloudandBanner | Word | 0 | 08-24-2009 09:29 AM |
Outlook 2003 drops notes when exporting as a VCARD file | GY58 | Outlook | 0 | 04-29-2006 07:57 PM |