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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top