Hi experts,
I'm running in Windows 7, DotNet 2010 with VPE v6.10 Professional.
My scenario:
Say VPEFileName is fixed, and I'll never delete the physical file.
Sample CODE:
*************************************************************************************
VPE.Write(......);
VPE.Write(......);
VPE.Write(......);
VPE.Write(......);
VPE.Write(......);
VPEFileName = "C:\HelloWorld.VPE";
VPE.WriteDoc(VPEFileName);
*************************************************************************************
First written to the VPE file has everything gone perfectly.. but for the subsequently writes, every time the content will be appended into the existing one, rather than fully overwritten the content in the VPE file.
Is that something I can do such code instruction to always overwrites the previous contents in the same file name VPE File?
Thanks in advance.