C
Centaur
In access basic - I want to write at the end of a line in a memo field (from
access basic) a carriage return and line feed and resume more text. I
thought that chr$(10) and chr$(13) did this but it is just putting two
vertical lines in there and cr lf.
Context is something like this
dim cr as string
dim mem as string
cr = chr$(10) + chr$(13)
mem = "Lots of text" + cr " more text" + cr + "even more text"
Any help would be appreciated please
Centaur
access basic) a carriage return and line feed and resume more text. I
thought that chr$(10) and chr$(13) did this but it is just putting two
vertical lines in there and cr lf.
Context is something like this
dim cr as string
dim mem as string
cr = chr$(10) + chr$(13)
mem = "Lots of text" + cr " more text" + cr + "even more text"
Any help would be appreciated please
Centaur