Hello,
i am using the IDEALSoftware.VpeCommunity.dll, Version 7.00 in DynamicsNAV (integrated IDE, .NET compatible with own but simple syntax as you can see below).
My goal is to convert an existing .vpe to a .pdf File:
VPE := VPE.VpeControl(); //Instantiation
VPE.OpenDoc;
IF VPE.ReadDoc('\\SourceServerPath\File.vpe') THEN
VPE.WriteDoc('\\DestinationServerpath\File.pdf')
ELSE
MESSAGE(STRSUBSTNO('%1',VPE.LastError));
VPE.CloseDoc;
It runs into the ELSE statement with an error of "FileDocVersion".
According to the Documentation this error means that the file iam trying to read is of a newer version, but i am using the latest dll version 7.00.
Will an upgrade from the Community Version solve this, or has anybody else an idea for this?
Thanks in advance!
Saki