I have a word document that I manipulate what displays based on input from a userform.
Once the code has generated the correct version of the document based on the inputs, I convert the word document to a PDF (also with code). Works fine.
But, is there code that would create a fillable PDF?
Here is the current code I am using to create the non-fillable PDF.
ActiveDocument.ExportAsFixedFormat OutputFileName:= _
"I:\P-13100 Output\" & txtPlanNum.Text & " Form.pdf", _
ExportFormat:=17, _
OpenAfterExport:=True, _
OptimizeFor:=0, _
Range:=0, _
From:=1, _
to:=1, _
Item:=0, _
IncludeDocProps:=True, _
KeepIRM:=True, _
CreateBookmarks:=0, _
DocStructureTags:=True, _
BitmapMissingFonts:=True, _
UseISO19005_1:=False
Thanks!
Once the code has generated the correct version of the document based on the inputs, I convert the word document to a PDF (also with code). Works fine.
But, is there code that would create a fillable PDF?
Here is the current code I am using to create the non-fillable PDF.
ActiveDocument.ExportAsFixedFormat OutputFileName:= _
"I:\P-13100 Output\" & txtPlanNum.Text & " Form.pdf", _
ExportFormat:=17, _
OpenAfterExport:=True, _
OptimizeFor:=0, _
Range:=0, _
From:=1, _
to:=1, _
Item:=0, _
IncludeDocProps:=True, _
KeepIRM:=True, _
CreateBookmarks:=0, _
DocStructureTags:=True, _
BitmapMissingFonts:=True, _
UseISO19005_1:=False
Thanks!