Posted 23 June 2020, 12:58 am EST
Hello, I’m trying to convert some vp file into PDF. It works well on .NET framework, but when I tried to convert to .NET Core there is an error…
AxVSPrinter vSPrinter = new AxVSPrinter(); vSPrinter.CreateControl(); vSPrinter.LoadDoc(vpFilePath, false); vSPrinter.PreviewPage = 0; Image image = vSPrinter.Picture;
ERROR: vSPrinter.Picture’ threw an exception of type ‘System.Runtime.InteropServices.ExternalException’
Is there any solution to this? Thank You