Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vbLf and vbCr not recognized in query view 1

Status
Not open for further replies.

jrh1

Programmer
May 8, 2003
5
US
I have a query that calls a function to populate a column.

The function returns a string with embedded vbLf and vbCr (linefeeds and carriage returns).

The resulting string has the "square box" character that signifies a non-recognized character.

Question - can I use characters other than vbLf and vbCr in my code so that the system recognizes them?

Thanks in advance,
Jeff
 
You can't use these constants in a query. You can however use Chr(13) & Chr(10). They must be in this order.

Duane
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top