I have a memo box on my form and a button to place text into it when clicked. I need to append text to what is in the memo box now. The memo box may or may not have text in it at the time of clicking the button. So this does not work because it overwrites everything in the memo field:
On Click()
Forms!Form1.Memo = “Text”
I cannot find an ‘append string’ type function to use to add my text to the memo box.
Any help is great.
On Click()
Forms!Form1.Memo = “Text”
I cannot find an ‘append string’ type function to use to add my text to the memo box.
Any help is great.