Hello I have a checkbox called CheckEditStatus
I would like this to show True when the form property AllowEdits is True (and False when False).
What event can I tie this to?
I tried the following code on the forms Current event, but no joy:
If forms!property.AllowEdits = True Then
me.CheckEditStatus = True
else
me.CheckEditStatus = False
End if
I would very much appreciate help with this (I am still trying to make the jump from Macros to code)
Regards
Mark
I would like this to show True when the form property AllowEdits is True (and False when False).
What event can I tie this to?
I tried the following code on the forms Current event, but no joy:
If forms!property.AllowEdits = True Then
me.CheckEditStatus = True
else
me.CheckEditStatus = False
End if
I would very much appreciate help with this (I am still trying to make the jump from Macros to code)
Regards
Mark