I don't know why I can never get this kind of stuff right! I have a Access 2013 form named "5 - IpDetailForm". (I know, naming convention leaves a lot to be desired!) It contain a check box named "Approved". It
also contains a subform named "6 - FeatureSubform" Which contains a control named "DeleteFlag".
When the "Approved" check box on the form named "5 - IpDetailForm" is set to true, I want to hide the control named "DeleteFlag" on the form "6 - FeatureSubform".
This is what I have in the Approved controls AfterUpdate event:
If Me.Approved = -1 Then 'approval was granted
Forms![5 - IpDetailForm]![6 - FeatureSubform].Form.deleteFlag.Visible = False
Endif
This is what I get

What have I got wrong?