|
|
|
date: Mon, 11 Aug 2008 13:43:54 -0700,
group: microsoft.public.word.vba.general
back
Re: Create secured pdf with word 2007?
The PDF add-in is a basic PDF creation tool, If you want added security, you
will need Acrobat. Maybe when Word 2997 really is available such a facility
will have been added? ;)
PDF security is in any case an illusion, anyone who wished to would have
little difficulty plagiarising a PDF document he can see. It merely slows
the process.
While it is possible to save documents to PDF (using the Microsoft add-in),
it is not directly programmable in the way I suspect you mean.
ActiveDocument.ExportAsFixedFormat OutputFileName:= _
"filename.pdf", _
ExportFormat:=wdExportFormatPDF, _
OpenAfterExport:=False, _
OptimizeFor:=wdExportOptimizeForPrint, _
Range:=wdExportAllDocument, From:=1, To:=1, _
Item:=wdExportDocumentContent, _
IncludeDocProps:=True, _
KeepIRM:=True, _
CreateBookmarks:=wdExportCreateHeadingBookmarks, _
DocStructureTags:=True, _
BitmapMissingFonts:=True, _
UseISO19005_1:=False
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
amos wrote:
> I've downloaded the save as pdf addin for word 2997, but don't see any
> option to create the pdf with security. All I need to do is to make
> the document disabled for edits, is that possible? Also, I'm
> interested in converting using vba calls, I'm not sure if that's
> possible but I suppose so?
date: Tue, 12 Aug 2008 07:23:53 +0300
author: Graham Mayor
|
|