I need to find a way to lock down a field so the people doing the work on an issue will not change their start dates. I am wanting to disable the field after the answer the question whether they want to finalize the date or nor. Below is the code that does not work.
Private Sub Days_AfterUpdate()
Dim response As Integer
response = MsgBox(“Is this value correct?”, vbYesNo)
If response = vbYes Then
Me.Days.Enabled = True
Else
Me.Days.Enabled = False
End If
End Sub
The else part is the thing that does not work. Thanks for the help.