This is the Validation that I have but Checkbox still changes regardless of password!
Private Sub Locked_BeforeUpdate(Cancel As Integer)
If InputBox("You must provide the correct password to Lock or Unlock an Estimate!", "Password Input") <> "Test" Then
MsgBox "Wrong Password Entered. Operation aborted!", vbCritical
End If
End Sub