K
KLP34
I have a date field and a yes/no field. Is it possible to have the program
insert the current date when the yes/no field is checked?
insert the current date when the yes/no field is checked?
KLP34 said:I have a date field and a yes/no field. Is it possible to have the program
insert the current date when the yes/no field is checked?
Me.txtDate = Date()Stuart said:Insert the following code into the checkbox's AfterUpdate event
procedure:
If Me.checkBox = True Then
Works like a charm! I am very grateful ... Thank You!
Mike Painter said:Thanks should go to Stuart.