S
Steve
I have a memo control on a form that is populated from the contents of a
textbox control when the user clicks a cmd button. The user can make multiple
entries and each entry is added to the memo concatenated with the previous
contents of the memo as follows:
me.memo = me.memo & me.Textbox
I would like the program to perform a carriage return and begin a new line
in the memo box before each addition. I tried using the sendkeys method as
follows but it does something strange and fills the memobox with endless
repeats of the textbox field:
me.memo = me.memo & me.Textbox
sendKeys "{Enter}"
what am I doing wrong and is there a better way to go about doing this?
Thanks.
textbox control when the user clicks a cmd button. The user can make multiple
entries and each entry is added to the memo concatenated with the previous
contents of the memo as follows:
me.memo = me.memo & me.Textbox
I would like the program to perform a carriage return and begin a new line
in the memo box before each addition. I tried using the sendkeys method as
follows but it does something strange and fills the memobox with endless
repeats of the textbox field:
me.memo = me.memo & me.Textbox
sendKeys "{Enter}"
what am I doing wrong and is there a better way to go about doing this?
Thanks.