Checkbox Automation

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

Guest

I want a checkbox to be automatiacally ticked (true) if an adjoining date
field is less than or equal to Date(). What is the best way to make that
happen? I really appreciate your help.
 
I want a checkbox to be automatiacally ticked (true) if an adjoining date
field is less than or equal to Date(). What is the best way to make that
happen? I really appreciate your help.

Code the [DateField] AfterUpdate event:

Me![CheckBoxName] = Me![DateField]<= Date
 
Fred,

Thank you very much. This discussion group service has been terrific and
invaluable for someone who needs to be trained in VB to be a power user.
--
Dan S


fredg said:
I want a checkbox to be automatiacally ticked (true) if an adjoining date
field is less than or equal to Date(). What is the best way to make that
happen? I really appreciate your help.

Code the [DateField] AfterUpdate event:

Me![CheckBoxName] = Me![DateField]<= Date
 

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

Similar Threads


Back
Top