Access Database help!!

  • Thread starter Thread starter Nancy
  • Start date Start date
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.
 
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.
 
Back
Top