Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Freeing the access to a file

Status
Not open for further replies.

kyru

Programmer
Jan 17, 2009
45
ES
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.
 
Ok. I finally worked around the problem by doing this:


Dim s As XmlWriter
s = XmlWriter.Create(archhtml)
xslt.Transform(archxml, xslArg, s)
s.Close()

It was something locical, now that I realize it... Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top