LINE RETURN IN VB

  • Thread starter Thread starter ERIC
  • Start date Start date
E

ERIC

Does anyone know how to create a line return in Microsoft
VB? I'm using the VB editor in Access.
 
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)
 
Back
Top