Hi all,
I have check boxes that automatically input text into fields on forms. I use this code...
Private Sub Check88_AfterUpdate()
If Me![Check88].Value = False Then Me![VisitHistory] = Null
If Me![Check88].Value = True Then Me![VisitHistory] = "Additional text."
DoCmd.RunCommand acCmdRefresh
End Sub
Problem is, I need to create check boxes that auto input paragraphs of text into a memo field. Example of text I need to input...
" 1. The history is consistent with sleep apnea.
a. This history of snoring....
b. The consequences of sleep apnea...."
Please notice that I have to hit enter several times to get to the next line and that is also how I want the text to appear on the report.
So, how do I tell the checkbox to type in multiple lines of text and place NEXT LINES in certain areas?
I have tried searching the help files and can't figure out what the name of my problem is to type in a help topic. Even if someone could point me in the right direction, that would be great.
I have check boxes that automatically input text into fields on forms. I use this code...
Private Sub Check88_AfterUpdate()
If Me![Check88].Value = False Then Me![VisitHistory] = Null
If Me![Check88].Value = True Then Me![VisitHistory] = "Additional text."
DoCmd.RunCommand acCmdRefresh
End Sub
Problem is, I need to create check boxes that auto input paragraphs of text into a memo field. Example of text I need to input...
" 1. The history is consistent with sleep apnea.
a. This history of snoring....
b. The consequences of sleep apnea...."
Please notice that I have to hit enter several times to get to the next line and that is also how I want the text to appear on the report.
So, how do I tell the checkbox to type in multiple lines of text and place NEXT LINES in certain areas?
I have tried searching the help files and can't figure out what the name of my problem is to type in a help topic. Even if someone could point me in the right direction, that would be great.