Access Database help!!

N

Nancy

How do you link a check box to a memo field? I want it to
when the user selects a check box the memo field
automatically comes up. Any help with this would be
appreciated.
 
J

Joe Fallon

You write a bit of code in the AfterUpdate event of the checkbox.

For example:
Me![txtMemo].Visible = True

Be sure to store your Memo data in txtMemo and then hide it from the user
til they click the checkbox.
 
Top