button - adding a return in a memo field

  • Thread starter Thread starter KingKaos
  • Start date Start date
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
 
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,"
 
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
 
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top