Click to See Complete Forum and Search --> : Asp


Lord Zarm
August 21st, 2002, 01:49 PM
I need to create an NewLine

strX = "El Requerimento = " & FOL
strX = strX & "Status Inicial " & STATOLD
strX = strX & "Status Nuevo " & STAT

I need to somehow have each of these be a seperate line right now they are on then same line.

vbNewLine doesnt work

goddess_spanky
August 22nd, 2002, 11:22 AM
use vbCrLf (carriage return, line feed)
or do it the hard way and use chr(10) & chr(13) together