I am having a problem converting two character fields to one memo, when I create
cVal1 := '1'
cVal2 := '2'
cStr := cVal1 + CHR(13)
cStr += cVal2 + CHR(13)
database->memofield := cStr
system should display
1
2
however it displays
1■2■
■ is actual a non-filled box
How do I correct this problem