Hi,
I'm trying to add a new line to a field in the database so that each item is displayed on a separate line.
So, I'm trying to do:
Math
English
strSQL = "Update tblContent SET Product = 'Math + CHAR(13) + CHAR(10) + English ' WHERE productid = 1"
The result I get is:
Math + CHAR(13) + CHAR(10) + English
I haven't been able to figure out how to do it.
Thanks
I'm trying to add a new line to a field in the database so that each item is displayed on a separate line.
So, I'm trying to do:
Math
English
strSQL = "Update tblContent SET Product = 'Math + CHAR(13) + CHAR(10) + English ' WHERE productid = 1"
The result I get is:
Math + CHAR(13) + CHAR(10) + English
I haven't been able to figure out how to do it.
Thanks