When returning results from a SQL query containing 'char(10) + char(13)' to a multiline textbox results in box characters instead of the line feed. How do i get VB.net to interphret the line feed correctly???
Example:
CUSTOMER_Addres s.Address + char(10) + char(13) + CUSTOMER_Addres s.City
Returns:
123 Fakestreet □□ Fake City
Example:
CUSTOMER_Addres s.Address + char(10) + char(13) + CUSTOMER_Addres s.City
Returns:
123 Fakestreet □□ Fake City
Comment