×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Visual Basic
Posted by: userc865b
Added: Apr 21, 2018 8:03 AM
Views: 3039
Tags: vba
  1. Sub Makro5()
  2. '
  3. ' erstellt eine Pdf der Bewerbung
  4. '
  5. '
  6.    ActiveDocument.ExportAsFixedFormat OutputFileName:= _
  7.         "BewerbungEduardPaul.pdf" _
  8.         , ExportFormat:=wdExportFormatPDF, OpenAfterExport:=True, OptimizeFor:= _
  9.         wdExportOptimizeForPrint, Range:=wdExportAllDocument, From:=1, To:=1, _
  10.         Item:=wdExportDocumentContent, IncludeDocProps:=True, KeepIRM:=True, _
  11.         CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _
  12.         BitmapMissingFonts:=True, UseISO19005_1:=False
  13.    
  14. End Sub