Using the following code:
xslt.Transform(archxml, xslArg, XmlWriter.Create(archhtml)
xslt.TemporaryFiles.KeepFiles() = True
archhtml keeps occupied by, I suppose the Transform method, the method KeepFiles doesn't also work into freeing the file. I could work around this problem by using a temporary temp file that would change its name every time the method is called and the copying this file as archhtml, but this is no good way of doing things, any idea of how to free it?
Thanks in advance.
xslt.Transform(archxml, xslArg, XmlWriter.Create(archhtml)
xslt.TemporaryFiles.KeepFiles() = True
archhtml keeps occupied by, I suppose the Transform method, the method KeepFiles doesn't also work into freeing the file. I could work around this problem by using a temporary temp file that would change its name every time the method is called and the copying this file as archhtml, but this is no good way of doing things, any idea of how to free it?
Thanks in advance.