I want to create a PDF/A-3 Document and then add an attachment to it.
I tried using the Interop Services.
Dim xl As Microsoft.Office.Interop.Excel.Application = New Microsoft.Office.Interop.Excel.Application
Dim wkb As Microsoft.Office.Interop.Excel.Workbook = xl.Workbooks.Open("C:\SourceFile.xlsx")
wkb.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, "C:\Test.pdf")
xl.Quit()
Is there a way to produce a PDF/A-3 compatible file and add an attachment to it without use of external libraries?
If not, what external library are you recommending considering B2B use.