LINE RETURN IN VB

E

ERIC

Does anyone know how to create a line return in Microsoft
VB? I'm using the VB editor in Access.
 
D

Douglas J. Steele

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)
 
Top