E ERIC Dec 12, 2003 #1 Does anyone know how to create a line return in Microsoft VB? I'm using the VB editor in Access.
D Douglas J. Steele Dec 13, 2003 #2 There's a carriage return, and there's a line feed, but there's no such thing as a line return, AFAIK. Carriage return is Chr(13), line feed is Chr(10). You usually need to use both, and in that order. There's also an intrinsic variable vbCrLf (and, for good measure, vbNewLine)
There's a carriage return, and there's a line feed, but there's no such thing as a line return, AFAIK. Carriage return is Chr(13), line feed is Chr(10). You usually need to use both, and in that order. There's also an intrinsic variable vbCrLf (and, for good measure, vbNewLine)