Hi,
I have a problem to write a sting to a file. The output file I get is only 3kB, but my string is longer and I get only part of it in the output file. Here is the program code.
OutFileName = "C:\Temp\gbxml.xml" ' this is for debug
Dim fs As New FileStream(OutFileName, FileMode.Create)
If fs Is Nothing Then Return False
Dim oWrite As New StreamWriter(fs)
oWrite.Write(strXML)
fs.Close()
What can I do?
Thanks,
EK