I am getting a runtime error when I click on a Option button on my form. I have the below code to change a textbox value, but it is telling me it cannot save the data to the field. Any clues?
Private Sub blncloseincident_AfterUpdate()
If Me.blncloseincident.Value = True Then
txtendtime.SetFocus
txtendtime.Text = Date & " " & Time
End If
End Sub
Private Sub blncloseincident_AfterUpdate()
If Me.blncloseincident.Value = True Then
txtendtime.SetFocus
txtendtime.Text = Date & " " & Time
End If
End Sub