View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Leech Leech is offline
external usenet poster
 
Posts: 1
Default 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!