I have a menu form (form1) and 2 subforms (subform1 & 2).
When I update data in subform1, I want to disable subform2.
I tried from subform1
but VBA keeps telling me that he is unable to find that name.
Any ideas?
When I update data in subform1, I want to disable subform2.
I tried from subform1
Code:
Private Sub field1_AfterUpdate()
Forms![subform2].Disable
End Sub
Any ideas?