hi,
i'm trying to write a replace statement and I'm having a problem.
the string is
"canon\tpowershot a290\t...."
i want to replace every \t with a horizontal tab.
i have it as
str = replace(string, "\t", chr(11))
this doesn't seem to work since I don't think i have the write ascii code
for a horizontal tab.
please advise.
rafael