Copy link to clipboard
Copied
Office 365 VBA Code not working in Windows 11 with Adobe Pro. Is anything changed in Windows 11 combo ? . Need a help from support team.
(below code works good with Windows 10 with Adobe Pro)
Dim pdfmkr As AdobePDFMakerForOffice.PDFMaker
Dim stng As AdobePDFMakerForOffice.ISettings
Set pdfmkr = Nothing
Dim AddIn As COMAddIn
For Each AddIn In Application.COMAddIns
If InStr(UCase(AddIn.Description), "PDFMAKER") > 0 Then
Set pdfmkr = AddIn.Object
Exit For
End If
Next
'ActiveDocument.Save
'Settings for the document
' pdfmkr.GetCurrentConversionSettings stng
pdfmkr.GetDefaultConversionSettings stng
stng.AddBookmarks = True
stng.AddLinks = True
stng.OutputPDFFileName = strPDFFileName
stng.PromptForPDFFilename = False
stng.ShouldShowProgressDialog = True
stng.JobOptions = "FRIPDF"
stng.ViewPDFFile = True
stng.AddTags = False
pdfmkr.CreatePDFEx stng, 0
Copy link to clipboard
Copied
in the future, to find the best place to post your message, use the list here, https://community.adobe.com/
p.s. i don't think the adobe website, and forums in particular, are easy to navigate, so don't spend a lot of time searching that forum list. do your best and we'll move the post (like this one has already been moved) if it helps you get responses.
<"moved from using the community bugs">