Microsoft Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I keep boxes in my form locked until another box is updated. For
example, in my sales sheet, I don't want my customer service people to be
able to click "ALL DONE" until the credit card field has been updated.
 
How do I keep boxes in my form locked until another box is updated. For
example, in my sales sheet, I don't want my customer service people to be
able to click "ALL DONE" until the credit card field has been updated.

Set the [AllDone] control's enabled property to No.

Code the [CreditCard] AfterUpdate event (and also the form's Current
event):
[AllDone].Enabled = Not IsNull([CreditCard])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top