need to add string to txt file
Hey!
need to write "//" to the end of a last string of a simple txt file.
dim nf as integer
nf = freefile
open lpfilename for binary access write as nf
put nf, LOF(nf), "//"
close nf
but there is an uprintable symbol appears between last charcher and "//".
pls advise how this can be avoided. thanks!
|