Dave Eyley
Registered User.
- Local time
- Today, 08:34
- Joined
- Sep 5, 2002
- Messages
- 254
Hi All,
I am trying to use a memo field to record a list of names. I don't want to use another table.
The form I am using can send emails to people selected by the user. The form then finds the valid email address and sends the email recording the addressee to the memo field list.
The problem is I can't seem to find a way of reliably adding the names so they look like a list.
I've tried -
Me!MemoField=Me!MemoField & Chr$(10) & NewName
and
Me!MemoField=Me!MemoField & Chr$(10) & Chr$(13) & NewName
and
Me!MemoField=Me!memoField & Chr$(10) & Chr$(10) & NewName
with varying degress of reliability but none giving a predictable clean list of names.
Any ideas?
Dave Eyley
I am trying to use a memo field to record a list of names. I don't want to use another table.
The form I am using can send emails to people selected by the user. The form then finds the valid email address and sends the email recording the addressee to the memo field list.
The problem is I can't seem to find a way of reliably adding the names so they look like a list.
I've tried -
Me!MemoField=Me!MemoField & Chr$(10) & NewName
and
Me!MemoField=Me!MemoField & Chr$(10) & Chr$(13) & NewName
and
Me!MemoField=Me!memoField & Chr$(10) & Chr$(10) & NewName
with varying degress of reliability but none giving a predictable clean list of names.
Any ideas?
Dave Eyley