I have created an Access 2000 form that has yes/no checkbox fields on it. I have corresponding dates that should be updated when the item is checked off. I am new to VB and cannot get my code to work. Can someone give me some tips.
Here is what my code looks like:
Private Sub Reg_Form_Check_AfterUpdate()
If RegFormInDate = Null And RegFormCheck = True Then
RegFormInDate.Value = Now()
End If
End Sub
Here is what my code looks like:
Private Sub Reg_Form_Check_AfterUpdate()
If RegFormInDate = Null And RegFormCheck = True Then
RegFormInDate.Value = Now()
End If
End Sub