I have set the tab for one subform (Document Status) to visible = false, I want to change it to true after I update another subform. I have tried variations on the code below but the tab field isn't available.
Private Sub Form_AfterUpdat e()
Me!Document_Sta tus.Visible = True
End Sub
Private Sub Form_AfterUpdat e()
Me!Document_Sta tus.Visible = True
End Sub
Comment