The following code, which is from a form EEP, is intended to place two lines of
text into the the DBMemo field edtSoldTo.
SET VAR tValue = ("Hello" + CHAR(10) + CHAR(13) + "GoodBye") PROPERTY
edtSoldTo TEXTVALUE .tValue WRITE .tValue
If I run this code, the WRITE statement correctly writes the two lines of code,
but what appears in my DBMemo field is Hello^Goodbye. The ^ is the LINEEND
character for this database.
Does anyone know how I can get the text to assign and display in the DBMemo
field without getting the LINEEND conversion?
--Larry