concatenate a return space

Bergja

Registered User.
Local time
Today, 16:41
Joined
Jul 11, 2008
Messages
17
Is it possible to concatenate a return space when adding data to a field in Access? For example I want to use a text box to add data to a memo field in a table. Each time data is added I want to add space between the new data and the next update so the field would look something like this:

18-July-2008: updated data.
"Return Space"
19-July-2008: updated data.

20-July-2008: updated data.

Is this possible?
 
Or if you're really adventursome:

Code:
...
    "18-July-2008: " & CHR(13) & CHR(10) '    carriage return and line feed
...
 

Users who are viewing this thread

Back
Top Bottom