I am trying to add start time in a access form when UpdateStart checked, it adds time in StartTime field, but only one problem I have user uncheck and checked back again StartTime also updated with the a new time.
Private Sub UpdateStart_AfterUpdate()
If Me.UpdateStart1 = -1 Then
Me.Name.Visible = True
Me.ValidationDate = Date
Me.StartTime = Now()
Else
Me.Name.Visible = False
End If
End Sub
Private Sub UpdateStart_AfterUpdate()
If Me.UpdateStart1 = -1 Then
Me.Name.Visible = True
Me.ValidationDate = Date
Me.StartTime = Now()
Else
Me.Name.Visible = False
End If
End Sub