It has now become necessary to generate "PDF/A-1b" type PDFs in the Netherlands for issue to the courts.
How do I achieve this in Foxpro? Current code for generating PDF works great:
pr=CreateObject("PrinceCom.Prince")
pr.SetPrincePath(oProp.AppStartPath+"prince\bin\prince.exe")
pr.Convert(Mhome+TRIM(bestandnaam)+".htm")
If I insert
pr.SetProfile("PDF/A-1b")
before pr.Convert I get an error message.
How do I achieve this in Foxpro? Current code for generating PDF works great:
pr=CreateObject("PrinceCom.Prince")
pr.SetPrincePath(oProp.AppStartPath+"prince\bin\prince.exe")
pr.Convert(Mhome+TRIM(bestandnaam)+".htm")
If I insert
pr.SetProfile("PDF/A-1b")
before pr.Convert I get an error message.