Checkbox Automation

D

Dan Sweetwood

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.
 
F

fredg

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
 
D

Dan Sweetwood

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
 
Top