I would like to insert todays date and a blank line at the beginning of a memo data box by clicking a command button, while retaining the data already stored in the memo data box field. Any Help??
This should do the trick:
Set this code to run on your command button's "on click" event: (change MemoName to match the name of your memo field)
Me!MemoName = Date & "-" & Time
Me!MemoName.SetFocus
me!tblnotes.SelStart = me!tblnotes.SelLength
HTH
jbehrne If at first you don't succeed, call in an airstrike. - Murphy's Laws of Combat Operations
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.