Carriage Return Character

  • Thread starter Thread starter Burt Rosner
  • Start date Start date
B

Burt Rosner

Dear Sir/Madam,

I'm looking for a way to put a carriage return character
into a memo field.

Does anyone know what the ASCII character is for a
carriage return. If you do, it would save me a lot of
time trying to figure it out.

Thanks,

Burt
 
From the Access 2000 Help File (Search on Character Set):

* *Values 8, 9, 10, and 13 convert to backspace, tab, linefeed, and carriage
return characters, respectively. They have no graphical representation but,
depending on the application, can affect the visual display of text.
 
Thanks. I used Chr(10) and it worked just fine.
-----Original Message-----
From the Access 2000 Help File (Search on Character Set):

* *Values 8, 9, 10, and 13 convert to backspace, tab, linefeed, and carriage
return characters, respectively. They have no graphical representation but,
depending on the application, can affect the visual display of text.




.
 
I would recommend using Chr(13) & Chr(10) in this order. Chr(10) many not
be enough in a number of application software.
 
Thanks I'll do it that way.

Burt
-----Original Message-----
I would recommend using Chr(13) & Chr(10) in this order. Chr(10) many not
be enough in a number of application software.

--
HTH
Van T. Dinh
MVP (Access)






.
 
Back
Top