Hi Guys,
I am developing a solution for Document Management in my Organization; Now I want a particular field named "testsub" to be Locked once another field named "subject_dl " is not null, otherwise, the field testsub should be unlocked for data entry.
So I had tried a code in the "On_Current " Event of the Form Named "outfrm" Example:
But this has'nt helped me at all. Any help please :-(
I am developing a solution for Document Management in my Organization; Now I want a particular field named "testsub" to be Locked once another field named "subject_dl " is not null, otherwise, the field testsub should be unlocked for data entry.
So I had tried a code in the "On_Current " Event of the Form Named "outfrm" Example:
Code:
If Is Not Null(subject_dl.Value) Then
Me.testsub.Locked = True
Else: Me.testsub.Locked = False
End If
Comment