J Jim Pockmire Nov 5, 2005 #1 What are the character codes for "carriage return" and "line feed"? Is there a standard source of codes available?
What are the character codes for "carriage return" and "line feed"? Is there a standard source of codes available?
D Douglas J. Steele Nov 5, 2005 #2 Chr(13) and Chr(10) respectively, or, in VBA, you can use the intrinsic constant vbCrLf. These are standard ASCII codes, not unique to Access. Any ASCII chart should give them to you, such as http://www.lookuptables.com/
Chr(13) and Chr(10) respectively, or, in VBA, you can use the intrinsic constant vbCrLf. These are standard ASCII codes, not unique to Access. Any ASCII chart should give them to you, such as http://www.lookuptables.com/