button - adding a return in a memo field

K

KingKaos

I have several buttons that list symptoms - to put them into a memo
field (called Symptomology)

Me.Symptomology = Me.Symptomoloy + " " & "Whatever symptoms, "

Is there any way to add a return at the end of this statement so instead of

Depression, Aniety

It would be listed
Depression,
Anxiety,

Any help would be appreciated - I'm sure there a simple return
command/function thing I can put at the end of the statement

Thanks

keith
 
F

fredg

I have several buttons that list symptoms - to put them into a memo
field (called Symptomology)

Me.Symptomology = Me.Symptomoloy + " " & "Whatever symptoms, "

Is there any way to add a return at the end of this statement so instead of

Depression, Aniety

It would be listed
Depression,
Anxiety,

Any help would be appreciated - I'm sure there a simple return
command/function thing I can put at the end of the statement

Thanks

keith

Me.Symptomology = Me.Symptomoloy & vbNewLine & "Whatever symptoms,"
 
E

eos

AUTO-REPLY From George Levitt

Please allow this to confirm a system receipt of your e-mail.

I am out of the office until Wednesday morning (1/12/05) and will not be
reviewing or responding to email or voicemail until that time.

I look forward to replying to your message on Wednesday.

Thanks and warmest regards, George
 
E

eos

AUTO-REPLY From George Levitt

Please allow this to confirm a system receipt of your e-mail.

I am out of the office until Wednesday morning (1/12/05) and will not be
reviewing or responding to email or voicemail until that time.

I look forward to replying to your message on Wednesday.

Thanks and warmest regards, George
 
E

eos

AUTO-REPLY From George Levitt

Please allow this to confirm a system receipt of your e-mail.

I am out of the office until Wednesday morning (1/12/05) and will not be
reviewing or responding to email or voicemail until that time.

I look forward to replying to your message on Wednesday.

Thanks and warmest regards, George
 
Top