Click to See Complete Forum and Search --> : Multiline text in Access Database


jayapalchandran
12-21-2006, 10:54 AM
i want to know how to parse cr/lf in a textarea and to enter that informatin into access database. is it possible to do that with access?

russell
12-21-2006, 11:39 AM
use Replace()

str = Replace(str, vbCrLf, "<br>")

jayapalchandran
01-13-2007, 03:22 AM
Thank you russell it is working